-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 890 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 890 Bytes
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
{
"name": "vite-plugin-multiple",
"version": "0.2.0",
"description": "Allow multiple Vite to run simultaneously",
"type": "module",
"main": "index.js",
"types": "types",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
}
},
"repository": "https://github.com/vite-plugin/vite-plugin-multiple.git",
"author": "草鞋没号 <308487730@qq.com>",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc",
"test": "vitest run",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@types/node": "^18.11.18",
"node-fetch": "^3.3.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.1"
},
"files": [
"types",
"index.cjs",
"index.js"
],
"keywords": [
"vite",
"config",
"multiple"
]
}