-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.96 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.96 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
{
"name": "vite-plugins",
"version": "1.0.0",
"description": "A collection of custom plugins designed to enhance the functionality of the Vite build tool.",
"private": true,
"scripts": {
"deps": "npm run clean && pnpm install",
"clean": "rm -rf node_modules ./*/*/node_modules",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx,.mjs --fix --ignore-path .eslintignore ./",
"prepare": "husky install",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release:all": "node ./release.mjs",
"build:vite-plugin-deps": "pnpm run --parallel --filter=vite-plugin-external... build",
"build:starters": "pnpm run --parallel --filter=*-starter^... build",
"build:all": "npm run build:vite-plugin-deps && pnpm run --parallel --filter=vite-plugin-* --filter=!vite-plugin-external build",
"test:all": "npm run build:all && pnpm run --filter=*-demo -r --parallel /^build:*/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengxinming/vite-plugins.git"
},
"author": "Jesse Feng <fxm0016@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
"homepage": "https://github.com/fengxinming/vite-plugins#readme",
"dependencies": {
"cross-spawn": "^7.0.6",
"markdown-it-mathjax3": "^4.3.2",
"picocolors": "^1.0.0",
"undici": "^7.8.0",
"vitepress": "^1.6.3",
"vitepress-plugin-group-icons": "^1.3.8"
},
"engines": {
"node": ">=14.18.0"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/node": "^20.17.28",
"eslint": "^8.57.1",
"eslint-config-fe": "^2.1.3",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"react": "^16.14.0"
}
}