forked from vue-vine/vue-vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 866 Bytes
/
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
{
"name": "@vue-vine/vite-plugin",
"version": "0.1.41",
"description": "Official Vite plugin for Vue Vine",
"author": "ShenQingchuan",
"license": "MIT",
"keywords": [
"Vue",
"Vite"
],
"exports": {
".": {
"dev": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"prepublish": "pnpm run build"
},
"dependencies": {
"@vue-vine/compiler": "workspace:*"
},
"devDependencies": {
"@types/hash-sum": "^1.0.2",
"rollup": "^4.27.3",
"vite": "^5.4.11"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}