-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@varlet/release",
"type": "module",
"version": "0.3.2",
"description": "publish all packages, generate changelogs and check commit messages",
"keywords": [
"varlet",
"release",
"changelog",
"commit-lint"
],
"author": "clencat <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/release"
},
"bugs": "https://github.com/varletjs/release/issues",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"vr": "bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"release": "pnpm build && node bin/index.js release -c",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write .",
"clean": "rimraf node_modules dist",
"commit-lint": "node bin/index.js commit-lint"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --allow-empty --concurrent false",
"commit-msg": "pnpm run commit-lint -p $1"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=9.0"
},
"devDependencies": {
"@types/conventional-changelog": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.9.0",
"@types/semver": "^7.5.5",
"@varlet/eslint-config": "^2.18.4",
"eslint": "^8.53.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.3.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"commander": "^11.1.0",
"conventional-changelog": "^5.1.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"nanospinner": "^1.1.0",
"picocolors": "^1.0.0",
"semver": "^7.5.4",
"tinyexec": "^0.3.0"
}
}