generated from dishait/vite-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
{
"version": "0.0.2",
"name": "vite-plugin-global-api",
"description": "vite 面向组件库的全局 api 的插件",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/vite-plugin-global-api.git"
},
"exports": {
"./*": "./*",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"client.d.ts"
],
"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",
"email": "1801982702@qq.com"
},
"bugs": {
"url": "https://github.com/dishait/vite-plugin-global-api/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.1",
"vitest": "^0.1.27"
},
"dependencies": {
"magic-string": "^0.26.1",
"naive-ui": "^2.26.4",
"vue": "^3.2.30"
}
}