-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.44 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.44 KB
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
{
"name": "scriptcat",
"version": "1.3.0-beta.4",
"description": "脚本猫,一个可以执行用户脚本的浏览器扩展,万物皆可脚本化,让你的浏览器可以做更多的事情!",
"author": "CodFrm",
"license": "GPLv3",
"private": true,
"scripts": {
"preinstall": "pnpm dlx only-allow pnpm",
"test": "vitest --test-timeout=500 --no-coverage --isolate=false --reporter=verbose",
"test:ci": "vitest run --test-timeout=500 --no-coverage --isolate=false --reporter=default --reporter.summary=false",
"coverage": "vitest run --coverage",
"coverage:ci": "vitest run --coverage --silent --reporter=default --reporter.default.summary=false",
"typecheck": "tsc --noEmit",
"build": "cross-env NODE_ENV=production rspack build",
"dev": "cross-env NODE_ENV=development rspack",
"dev:react-devtools": "cross-env NODE_ENV=development REACT_DEVTOOLS=true rspack",
"dev:noMap": "cross-env NODE_ENV=development NO_MAP=true rspack",
"pack": "node ./scripts/pack.js",
"format": "prettier --write .",
"lint": "eslint .",
"lint:ci": "eslint . --cache --cache-location .eslintcache",
"lint-fix": "eslint --fix .",
"changlog": "node ./scripts/changlog.js",
"crowdin": "crowdin",
"crowdin:download": "node ./scripts/crowdin-download.js"
},
"dependencies": {
"@arco-design/web-react": "^2.66.7",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"chardet": "^2.1.1",
"cron": "^4.4.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"dexie": "^4.0.10",
"dompurify": "^3.3.1",
"eslint-linter-browserify": "9.26.0",
"eventemitter3": "^5.0.1",
"fast-xml-parser": "^5.3.6",
"i18next": "^23.16.4",
"monaco-editor": "^0.52.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-i18next": "^15.6.0",
"react-icons": "^5.5.0",
"react-joyride": "^2.9.3",
"react-router-dom": "^7.13.0",
"string-similarity-js": "^2.1.4",
"uuid": "^11.1.0",
"webdav": "^5.9.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "9.39.2",
"@rspack/cli": "^1.7.6",
"@rspack/core": "^1.6.8",
"@swc/helpers": "^0.5.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.1.27",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.12.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/semver": "^7.7.1",
"@types/serviceworker": "^0.0.120",
"@unocss/postcss": "66.5.4",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"crx": "^5.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-userscripts": "^0.5.6",
"globals": "^16.5.0",
"iconv-lite": "^0.7.2",
"jsdom": "^26.1.0",
"jszip": "^3.10.1",
"mock-xmlhttprequest": "^8.4.1",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"prettier": "^3.6.2",
"semver": "^7.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"unocss": "66.5.4",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.12.4",
"sideEffects": [
"**/*.css",
"**/*.scss",
"**/*.less"
]
}