-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 4.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "nebulaenhance",
"version": "1.5.4",
"private": true,
"description": "Enhancer for Nebula. Adds some quality of life features to the nebula player.",
"type": "module",
"scripts": {
"jest": "NODE_OPTIONS=--experimental-vm-modules JEST_PUPPETEER_CONFIG=jest-puppeteer.config.cjs jest",
"test": "npm run jest -- --runInBand",
"test:unit": "npm run jest -- --selectProjects unit",
"test:ee": "npm run jest -- --selectProjects integration --runInBand",
"test:watch": "npm run jest -- --watch --notify",
"test:pr": "npm run test:unit -- --ci --testPathIgnorePatterns youtube",
"coverage": "COVERAGE=true npm run jest -- --selectProjects unit --coverage",
"prebuild": "npm run clean && npm run build:all",
"build": "web-ext build",
"build:light": "rollup -c --configType all",
"postbuild": "npm run test",
"start": "npm run watch:all",
"start:firefox": "[ -d extension-dist ] || npm run build:light && concurrently \"npm:start\" \"npm:ext:firefox\"",
"start:chromium": "[ -d extension-dist ] || npm run build:light && concurrently \"npm:start\" \"npm:ext:chromium\"",
"ext:firefox": "web-ext run",
"ext:android": "web-ext run --target firefox-android",
"ext:chromium": "web-ext run --target chromium",
"watch:all": "rollup -c --configType all -w",
"watch:js": "rollup -c --configType js -w",
"watch:css": "rollup -c --configType css -w",
"watch:other": "rollup -c --configType other -w",
"build:all": "rollup -c --configType all --environment BUILD",
"build:js": "rollup -c --configType js --environment BUILD",
"build:css": "rollup -c --configType css --environment BUILD",
"build:other": "rollup -c --configType other --environment BUILD",
"lint": "npm run lint:js && npm run lint:css && npm run lint:ext",
"lint:js": "eslint '**/*.ts' '.*.?(c)js'",
"lint:css": "stylelint '**/*.scss'",
"lint:ext": "web-ext lint",
"lint-fix": "npm run lint:js -- --fix && npm run lint:css -- --fix && npm run lint:ext",
"clean": "rimraf extension-dist"
},
"keywords": [
"nebula",
"watchnebula",
"enhancer",
"firefox",
"chrome",
"addon",
"extension",
"webextension"
],
"author": "cpiber",
"license": "ISC",
"dependencies": {
"dompurify": "^3.1.6",
"marked": "^14.0.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/dompurify": "^3.0.5",
"@types/expect-puppeteer": "^5.0.6",
"@types/firefox-webext-browser": "^120.0.4",
"@types/jest": "^29.5.12",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"history": "^5.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-puppeteer": "^10.1.0",
"jest-puppeteer": "^10.1.0",
"jsdom": "^24.1.1",
"node-eval": "^2.0.0",
"node-fetch": "^3.3.2",
"postcss": "^8.4.41",
"postcss-preset-env": "^10.0.0",
"puppeteer": "^23.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-jest": "^3.1.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.77.8",
"stylelint": "^16.8.1",
"stylelint-config-standard-scss": "^13.1.0",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"web-ext": "^8.2.0"
},
"homepage": "https://github.com/cpiber/NebulaEnhance#readme",
"repository": {
"type": "git",
"url": "https://github.com/cpiber/NebulaEnhance.git"
},
"bugs": {
"url": "https://github.com/cpiber/NebulaEnhance/issues",
"email": "cp.piber@gmail.com"
},
"webExt": {
"sourceDir": "./extension-dist",
"run": {
"startUrl": [
"https://nebula.tv"
]
}
},
"packageManager": "pnpm@9.6.0"
}