forked from lisonge/vite-plugin-monkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
{
"name": "monkey-monorepo",
"private": true,
"scripts": {
"prepare": "husky install",
"format": "prettier --cache --write .",
"lint": "eslint --cache --fix packages/*/src/**/*.{js,ts,jsx,tsx}",
"build": "pnpm -r --filter=./packages/* build",
"build:playground": "pnpm -r --filter=./playground/* build",
"ci-publish": "tsx scripts/publishCI.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"dependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@gera2ld/jsx-dom": "^2.2.2",
"@types/blueimp-md5": "^2.18.2",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/md5": "^2.3.5",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.30",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@violentmonkey/dom": "^2.1.6",
"@violentmonkey/ui": "^0.7.8",
"@vitejs/plugin-legacy": "^5.3.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-vue": "^5.0.4",
"acorn": "^8.11.3",
"acorn-walk": "^8.3.2",
"animate.css": "^4.1.1",
"axios": "^1.6.8",
"base64-img": "^1.0.4",
"blueimp-md5": "^2.19.0",
"element-plus": "^2.6.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"immer": "^10.0.4",
"lint-staged": "^15.2.2",
"magic-string": "^0.30.8",
"md5": "^2.3.0",
"medium-zoom": "^1.1.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"pinia": "^2.1.7",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.72.0",
"semver": "^7.6.0",
"solid-js": "^1.8.16",
"terser": "^5.29.2",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"unimport": "^3.7.1",
"unocss": "^0.58.6",
"unplugin-auto-import": "^0.17.5",
"vite": "^5.2.4",
"vite-plugin-solid": "^2.8.0",
"vitepress": "1.0.1",
"vue": "^3.4.21"
},
"volta": {
"node": "20.13.1"
},
"packageManager": "[email protected]"
}