forked from kkaaddff/plugin-dumi-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
{
"name": "@fta/plugin-dumi-vue2",
"version": "1.0.0-alpha.4",
"main": "lib/index.js",
"description": "dumi插件 用于展示 vue2 sfc 组件",
"authors": {
"name": "kkaaddff",
"email": "[email protected]"
},
"keywords": [
"umi",
"dumi",
"plugin",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/kkaaddff/plugin-dumi-vue"
},
"homepage": "https://github.com/kkaaddff/plugin-dumi-vue",
"scripts": {
"start": "cross-env APP_ROOT=example umi dev",
"build": "tsc -p tsconfig.json & tsc -p tsconfig-previewer.json",
"prepublishOnly": "npm run build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
],
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^18",
"@types/webpack-sources": "^1.4.2",
"@types/webpack": "^4.41.26",
"lint-staged": "^10.0.8",
"umi": "^3.1.0",
"vite": "^2.9.13",
"vue": "^2.6.14",
"yorkie": "^2.0.0"
},
"dependencies": {
"webpack-sources": "^1.4.3"
},
"peerDependencies": {
"vite-plugin-externals": "^0.5.0",
"vite-plugin-vue2": "^2.0.1",
"vite": "^2.9.13",
"vue-template-compiler": "^2.6.14",
"vue": "^2.6.14"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"lib"
]
}