forked from scriptscat/scriptcat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.06 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.06 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
{
"name": "scriptcat",
"version": "1.0.0-beta.2",
"description": "脚本猫,一个可以执行用户脚本的浏览器扩展,万物皆可脚本化,让你的浏览器可以做更多的事情!",
"author": "CodFrm",
"license": "GPLv3",
"private": true,
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "cross-env NODE_ENV=production rspack build",
"dev": "cross-env NODE_ENV=development rspack",
"dev:noMap": "cross-env NODE_ENV=development NO_MAP=true rspack",
"pack": "node ./scripts/pack.js",
"format": "prettier --write .",
"lint": "eslint .",
"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.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@reduxjs/toolkit": "^2.5.1",
"cron": "^3.2.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"dexie": "^4.0.10",
"eslint-linter-browserify": "^9.26.0",
"eventemitter3": "^5.0.1",
"i18next": "^23.16.4",
"monaco-editor": "^0.52.2",
"pako": "^2.1.0",
"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-redux": "^9.2.0",
"react-router-dom": "^7.6.3",
"semver": "^7.7.2",
"uuid": "^11.1.0",
"webdav": "^5.8.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@crowdin/cli": "^4.9.0",
"@eslint/compat": "^1.3.1",
"@eslint/js": "^9.30.1",
"@rspack/cli": "^1.4.4",
"@rspack/core": "^1.4.4",
"@rspack/plugin-react-refresh": "^1.4.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.1.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.12.0",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/semver": "^7.5.8",
"@types/serviceworker": "^0.0.120",
"@unocss/postcss": "0.65.4",
"@vitest/coverage-v8": "3.2.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-userscripts": "^0.5.6",
"fake-indexeddb": "^6.0.1",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"jszip": "^3.10.1",
"mock-xmlhttprequest": "^8.4.1",
"node-polyfill-webpack-plugin": "^4.1.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.1.1",
"prettier": "^3.6.2",
"react-refresh": "^0.17.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"unocss": "0.65.4",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.12.4"
}