-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathpackage.json
87 lines (87 loc) · 2.46 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
{
"name": "ublacklist",
"version": "0.0.0",
"dependencies": {
"@codemirror/commands": "^6.8.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.10.8",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.3",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"@lezer/lr": "^1.4.2",
"@mdi/svg": "^7.4.47",
"colord": "^2.9.3",
"dayjs": "^1.11.13",
"goober": "2.1.10",
"is-mobile": "^5.0.0",
"js-yaml": "^4.1.0",
"punycode": "^2.3.1",
"react": "^19.0.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.0.0",
"tldts": "^6.1.78",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@lezer/generator": "^1.7.2",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/license-checker": "^25.0.6",
"@types/node": "^22.13.5",
"@types/punycode": "^2.1.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webextension-polyfill": "^0.12.2",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"csstype": "^3.1.3",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"fs-extra": "^11.3.0",
"globby": "^14.1.0",
"lefthook": "^1.11.0",
"license-checker": "^25.0.1",
"p-limit": "^6.2.0",
"prettier": "^3.5.2",
"semantic-release": "^24.2.3",
"semantic-release-amo": "^1.3.1",
"semantic-release-chrome": "^3.2.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"engines": {
"pnpm": ">=9.7.0"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"core-js",
"core-js-pure",
"esbuild",
"lefthook"
]
},
"private": true,
"scripts": {
"build": "tsx scripts/build.ts",
"check": "pnpm run /^check:/",
"check:biome": "biome check",
"check:prettier": "prettier --check .",
"check:tsc": "tsc",
"check-ci": "pnpm run /^check-ci:/",
"check-ci:biome": "biome ci --reporter=github",
"check-ci:prettier": "prettier --check .",
"check-ci:tsc": "tsc",
"fix": "pnpm run /^fix:/",
"fix:biome": "biome check --write",
"fix:prettier": "prettier --write .",
"generate-ruleset-parser": "lezer-generator src/scripts/ruleset/ruleset.grammar -o src/scripts/ruleset/parser.js --noTerms",
"generate-third-party-notices": "tsx scripts/generate-third-party-notices.ts",
"test": "tsx --test src/**/*.test.ts"
},
"type": "module"
}