generated from dishait/vite-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"version": "1.4.8",
"name": "vite-plugin-use-modules",
"description": "自动加载 modules",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/vite-plugin-use-modules.git"
},
"exports": {
"./*": "./*",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"client.d.ts"
],
"scripts": {
"build": "unbuild",
"prepublishOnly": "pnpm run build",
"dev": "unbuild --stub && pnpm -C examples/vite dev",
"release": "bumpp --commit --push --tag && npm publish"
},
"keywords": [
"vite",
"vue",
"module",
"plugin"
],
"author": {
"name": "markthree",
"url": "https://github.com/markthree"
},
"bugs": {
"url": "https://github.com/dishait/vite-plugin-use-modules/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.18.12",
"bumpp": "^9.2.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vite": "^5.0.2",
"vue": "^3.3.8"
},
"peerDependencies": {
"vue": ">=3.0.0",
"vite": ">=2.0.0"
},
"dependencies": {
"local-pkg": "^0.5.0"
}
}