-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "@vavite/multibuild-cli",
"version": "5.1.0",
"type": "module",
"bin": {
"vavite-multibuild": "./cli.js"
},
"files": [
"dist",
"cli.js",
"index.d.ts"
],
"description": "CLI command for orchestrating multiple Vite builds",
"author": "Fatih Aygün <[email protected]>",
"repository": "github:cyco130/vavite",
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepack": "rm -rf dist && pnpm build",
"test": "pnpm run test:typecheck && pnpm run test:lint && pnpm run test:package",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint . --max-warnings 0 --ignore-pattern dist",
"test:package": "publint --strict"
},
"peerDependencies": {
"vite": "^2.8.1 || 3 || 4 || 5 || 6"
},
"devDependencies": {
"@cyco130/eslint-config": "^5.0.1",
"eslint": "^9.16.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"dependencies": {
"@types/node": "^18.19.67",
"@vavite/multibuild": "workspace:*",
"cac": "^6.7.14",
"picocolors": "^1.1.1"
}
}