-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "vite-run",
"version": "1.7.2",
"type": "module",
"bin": {
"vite-run": "./dist/bin/vite-run.js"
},
"scripts": {
"dev:bin": "vite build -c config/vite.config.bin.js --watch",
"dev:nobin": "vite build -c config/vite.config.js --watch",
"build": "rimraf dist && vite build -c config/vite.config.js && vite build -c config/vite.config.bin.js",
"release": "npm run build && npm run release:git && npm run release:npm",
"release:npm": "npm run build && npm publish",
"release:git": "npm run -s build && git commit -am v$npm_package_version && git tag v$npm_package_version && git push --tags",
"test:build": "npm run build && npm run test:types",
"test:types": "vite-run types",
"test:dev": "vite-run dev",
"link": "pnpm link --dir= ./",
"unlink": "pnpm unlink"
},
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/vite-run.es.js",
"import": "./dist/vite-run.es.js",
"types": "./dist/index.d.ts"
},
"./types": {
"types": "./types/global.d.ts"
}
},
"files": [
"dist"
],
"author": "biggerstar",
"license": "MIT",
"repository": {
"url": "https://github.com/biggerstar/vite-run"
},
"description": "Vite multi-configuration monorepo mode operation support (Vite monorepo模式多配置运行支持)",
"dependencies": {
"commander": "^11.1.0",
"glob": "^10.3.10",
"inquirer": "^9.2.15",
"picocolors": "^1.0.0",
"unconfig": "^0.3.11"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.25",
"rimraf": "^5.0.5",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.4.2",
"vite-plugin-copy-dts": "0.0.5",
"vite-plugin-dts": "^3.7.3",
"vite": "5.1.5"
},
"keywords": [
"vite",
"build",
"env",
"config",
"multiple",
"monorepo"
]
}