-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@vitejs/release-scripts",
"version": "1.3.2",
"description": "@vitejs release scripts",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/release-scripts.git"
},
"scripts": {
"build": "tnode scripts/build.ts",
"prettier": "pnpm prettier-ci --write",
"prettier-ci": "prettier --cache --ignore-path=.gitignore --check '**/*.{ts,json,md,yml}'",
"qa": "tsc && pnpm prettier-ci && pnpm build",
"release": "tnode scripts/release.ts"
},
"dependencies": {
"execa": "^8.0.1",
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"publint": "^0.2.12",
"semver": "^7.6.3"
},
"devDependencies": {
"@arnaud-barre/tnode": "^0.24.0",
"@types/node": "^20.17.6",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}