-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 3.49 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
{
"name": "sidebartabs",
"description": "Emulate tabs in sidebar.",
"author": "asamuzaK",
"license": "MPL-2.0",
"homepage": "https://github.com/asamuzaK/sidebarTabs",
"bugs": {
"url": "https://github.com/asamuzaK/sidebarTabs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asamuzaK/sidebarTabs.git"
},
"type": "module",
"dependencies": {
"@asamuzakjp/css-color": "^2.7.1",
"dompurify": "^3.2.3",
"tldts-experimental": "^6.1.70",
"url-sanitizer": "^2.0.6",
"webext-schema": "^5.5.1"
},
"devDependencies": {
"@asamuzakjp/dom-selector": "^6.3.7",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.10.2",
"addons-linter": "^7.7.0",
"c8": "^10.1.3",
"camelize": "^1.0.1",
"commander": "^12.1.0",
"copyfiles": "^2.4.1",
"decamelize": "^6.0.0",
"eslint": "^9.17.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"html-validate": "^9.1.0",
"jsdom": "^25.0.1",
"mocha": "^11.0.1",
"neostandard": "^0.12.0",
"npm-run-all2": "^7.0.2",
"sinon": "^19.0.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.7.2",
"undici": "^7.2.0"
},
"scripts": {
"include": "npm-run-all -s include-*",
"include-browser": "copyfiles --up=3 --verbose node_modules/webext-schema/modules/browser.js src/mjs",
"include-color": "copyfiles -f --verbose node_modules/@asamuzakjp/css-color/LICENSE node_modules/@asamuzakjp/css-color/dist/esm/css-color.min.js node_modules/@asamuzakjp/css-color/dist/esm/css-color.min.js.map src/lib/color && node index include --dir=color -i",
"include-purify": "copyfiles -f --verbose node_modules/dompurify/LICENSE node_modules/dompurify/dist/purify.min.js node_modules/dompurify/dist/purify.min.js.map src/lib/purify && node index include --dir=purify -i",
"include-tldts": "copyfiles -f --verbose node_modules/tldts-experimental/LICENSE node_modules/tldts-experimental/dist/index.esm.min.js node_modules/tldts-experimental/dist/index.esm.min.js.map src/lib/tldts && node index include --dir=tldts -i",
"include-url": "copyfiles -f --verbose node_modules/url-sanitizer/LICENSE node_modules/url-sanitizer/dist/url-sanitizer-wo-dompurify.min.js node_modules/url-sanitizer/dist/url-sanitizer-wo-dompurify.min.js.map src/lib/url && node index include --dir=url -i",
"lint": "npm-run-all -s lint-*",
"lint-addons-linter": "addons-linter src",
"lint-eslint": "eslint --fix .",
"lint-html": "html-validate src/html/*.html",
"lint-style": "stylelint --fix src/css/*.css",
"test": "npm run test-central",
"test-beta": "c8 mocha --require=test/mocha/setup.js --channel=beta --exit test/*.test.js",
"test-central": "c8 mocha --require=test/mocha/setup.js --channel=central --exit test/*.test.js",
"test-esr": "c8 mocha --require=test/mocha/setup.js --channel=esr --exit test/*.test.js",
"test-release": "c8 mocha --require=test/mocha/setup.js --channel=release --exit test/*.test.js",
"test_all": "npm-run-all -s test-*",
"tsc": "node index clean --dir=types -i && npx tsc",
"update": "node index update -i",
"update-alpen": "node index update --dir=alpenglow -i",
"update-dark": "node index update --dir=dark -i",
"update-light": "node index update --dir=light -i"
},
"version": "15.1.4"
}