-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "vite-plugins",
"version": "1.0.0",
"description": "Some custom plugins for vitejs.",
"main": "index.js",
"directories": {
"example": "examples"
},
"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 ./",
"build:packages": "pnpm run -r --parallel build:lib",
"build:examples": "pnpm run -r --parallel build",
"prepare": "husky install",
"docs": "typedoc"
},
"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": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^14.18.0",
"lerna": "^6.6.2",
"vite": "^4.5.0"
},
"engines": {
"node": ">=14.18.0"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"eslint": "^8.48.0",
"eslint-config-fe": "^2.1.0",
"eslint-plugin-jsx-advanced": "^1.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"react": "^16.14.0",
"typedoc": "^0.25.4"
}
}