generated from dishait/vite-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.8 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
{
"version": "0.1.0",
"name": "vite-plugin-vue-custom-blocks",
"description": "vue sfc 的自定义块 vite 插件",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/vite-plugin-vue-custom-blocks.git"
},
"exports": {
"./*": "./*",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest --coverage",
"dev": "pnpm run build -- --watch",
"init:info": "plop --plopfile scripts/init.js",
"release": "bumpp --commit --push --tag && npm publish",
"play": "pnpm -C examples/vite run dev",
"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": {
"name": "markthree",
"url": "https://github.com/markthree"
},
"bugs": {
"url": "https://github.com/dishait/vite-plugin-vue-custom-blocks/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.17",
"bumpp": "^7.1.1",
"c8": "^7.11.0",
"esno": "^0.14.1",
"plop": "^3.0.5",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"vite": "^2.8.0",
"vitest": "^0.1.27"
},
"dependencies": {
"@types/js-yaml": "^4.0.5",
"defu": "^5.0.1",
"js-yaml": "^4.1.0",
"vue": "^3.2.30"
}
}