generated from dishait/vite-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.11 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
81
82
83
84
85
86
87
88
{
"version": "0.0.7",
"name": "vite-plugin-vue-factory",
"description": "vite的vue可视化工程管理插件",
"main": "./node/index.js",
"module": "./node/index.mjs",
"types": "./node/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/vite-plugin-vue-factory.git"
},
"exports": {
"./*": "./*",
".": {
"require": "./node/index.js",
"import": "./node/index.mjs",
"types": "./node/index.d.ts"
}
},
"files": [
"node",
"client",
"client.d.ts"
],
"scripts": {
"test": "vitest",
"dev": "node scripts/build",
"test:watch": "vitest --watch",
"coverage": "vitest --coverage",
"prepublishOnly": "pnpm run build",
"play": "pnpm -C examples/vite run dev",
"init:info": "plop --plopfile scripts/init.js",
"build": "tsup && pnpm run --filter ./src/client build",
"release": "bumpp --commit --push --tag && npm publish",
"play:open": "pnpm -C examples/vite run dev:open",
"play:host": "pnpm -C examples/vite run dev:host",
"play:build": "pnpm -C examples/vite run build",
"play:preview": "pnpm -C examples/vite run preview",
"play:preview:open": "pnpm -C examples/vite run preview:open",
"play:preview:host": "pnpm -C examples/vite run preview:host"
},
"keywords": [
"vite",
"plugin",
"template"
],
"author": {
"email": "[email protected]",
"name": "markthree",
"url": "https://github.com/markthree"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/dishait/vite-plugin-vue-factory/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.24",
"bumpp": "^7.1.1",
"c8": "^7.11.0",
"chokidar": "^3.5.3",
"esno": "^0.14.1",
"execa": "^6.1.0",
"plop": "^3.0.5",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"vite": "^2.9.4",
"vitest": "^0.1.27"
},
"dependencies": {
"@antfu/install-pkg": "^0.1.0",
"@types/fs-extra": "^9.0.13",
"fs-extra": "^10.0.1",
"kolorist": "^1.5.1",
"magic-string": "^0.26.1",
"read-pkg": "^7.1.0",
"sirv": "^2.0.2",
"ufo": "^0.8.3",
"vite-plugin-use-modules": "^1.1.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vue"
]
}
}
}