-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"name": "@vitejs/release-scripts",
"version": "1.6.0",
"description": "@vitejs release scripts",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"exports": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/release-scripts.git"
},
"scripts": {
"build": "tnode scripts/build.ts",
"test": "vitest",
"prettier": "pnpm prettier-ci --write",
"prettier-ci": "prettier --cache --ignore-path=.gitignore --check '**/*.{ts,json,md,yml}'",
"qa": "tsc && pnpm prettier-ci && pnpm build && vitest run",
"release": "tnode scripts/release.ts"
},
"dependencies": {
"conventional-changelog": "^7.2.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"publint": "^0.3.18",
"semver": "^7.7.4",
"tinyexec": "^1.0.4"
},
"devDependencies": {
"@arnaud-barre/tnode": "^0.25.0",
"@types/node": "^24.12.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"esbuild": "^0.27.4",
"fs-fixture": "^2.11.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@10.32.1"
}