-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "yacu",
"version": "1.0.1",
"description": "CC98 增强脚本",
"homepage": "https://github.com/CoolSpring8/yacu",
"author": "CoolSpring8",
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "husky install"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"@types/react": ">=16.0.0 <17.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.2",
"core-js": "^3.20.1",
"cross-env": "^7.0.3",
"cssnano": "^5.0.14",
"esbuild": "^0.14.8",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.3.0",
"eslint-plugin-unicorn": "^40.0.0",
"husky": "^7.0.4",
"idb-keyval": "^6.0.3",
"jest": "^27.4.5",
"jsdom": "^19.0.0",
"lint-staged": "^12.1.7",
"mitt": "^3.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.1",
"rollup": "^2.62.0",
"rollup-plugin-esbuild": "^4.8.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-prettier": "^2.2.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-userscript-metablock": "^0.3.1",
"svelte": "^3.44.3",
"svelte-preprocess": "^4.10.1",
"tailwindcss": "^3.0.12",
"ts-jest": "^27.1.2",
"tslib": "^2.3.1",
"type-fest": "^2.8.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,cjs,ts,svelte}": "eslint --cache --fix",
"*.{js,cjs,ts,svelte,css,md}": "prettier --write"
}
}