forked from iorate/ublacklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.35 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
{
"name": "ublacklist",
"version": "0.0.0",
"dependencies": {
"@codemirror/commands": "^6.6.2",
"@codemirror/lang-yaml": "^6.1.1",
"@codemirror/language": "^6.10.3",
"@codemirror/lint": "^6.8.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.33.0",
"@lezer/common": "^1.2.1",
"@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": "^4.0.0",
"js-yaml": "^4.1.0",
"punycode": "^2.3.1",
"react": "^18.3.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"tldts": "^6.1.47",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@lezer/generator": "^1.7.1",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/license-checker": "^25.0.6",
"@types/node": "^22.5.5",
"@types/punycode": "^2.1.4",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.1",
"chalk": "^5.3.0",
"chokidar": "^4.0.0",
"csstype": "^3.1.3",
"dotenv": "^16.4.5",
"esbuild": "^0.23.1",
"fs-extra": "^11.2.0",
"globby": "^14.0.2",
"lefthook": "^1.7.15",
"license-checker": "^25.0.1",
"p-limit": "^6.1.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.1",
"semantic-release-amo": "^1.3.1",
"semantic-release-chrome": "^3.2.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"pnpm": ">=9.7.0"
},
"packageManager": "pnpm@9.11.0",
"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",
"workspaces": [
"website"
]
}