-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@varlet/release",
"version": "2.2.1",
"description": "publish all packages, generate changelogs and check commit messages",
"keywords": [
"changelog",
"commit-lint",
"release",
"varlet"
],
"bugs": "https://github.com/varletjs/release/issues",
"license": "MIT",
"author": "clencat <2091927351@qq.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/release.git"
},
"bin": {
"vr": "dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "vp pack",
"commit-lint": "node dist/cli.js commit-lint",
"dev": "vp pack --watch",
"release": "vp pack && vp test run && node scripts/release.js",
"release:dev": "vp pack && node scripts/release.js",
"test": "vp test",
"test:coverage": "vp test run --coverage",
"type-check": "tsgo --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"cleye": "^2.3.0",
"rslog": "^2.1.1",
"semver": "^7.7.4",
"standard-changelog": "^7.0.1",
"tinyexec": "^1.1.1"
},
"devDependencies": {
"@configurajs/vite-plus": "^0.2.4",
"@types/node": "^22.14.0",
"@types/semver": "^7.7.1",
"@typescript/native-preview": "7.0.0-dev.20260410.1",
"@vitest/coverage-v8": "^4.1.4",
"vite-plus": "catalog:"
},
"engines": {
"node": "^20.19.0 || >=22.12.0",
"pnpm": ">=10.0"
},
"packageManager": "pnpm@10.28.2"
}