-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@antonreshetov/bumpy",
"type": "module",
"version": "0.4.0",
"description": "Zero-config, Git-powered versioning for monorepos",
"author": {
"name": "Anton Reshetov",
"url": "https://github.com/antonreshetov"
},
"license": "MIT",
"homepage": "https://github.com/antonreshetov/bumpy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antonreshetov/bumpy.git"
},
"bugs": {
"url": "https://github.com/antonreshetov/bumpy/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"versioning",
"monorepo",
"changelog",
"conventional-commits",
"release",
"semver"
],
"bin": {
"bumpy": "./dist/cli.js"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.2",
"conventional-commits-parser": "^6.2.1",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"js-yaml": "^4.1.1",
"picocolors": "^1.1.1",
"semver": "^7.7.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/conventional-commits-parser": "^5.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.10",
"@types/semver": "^7.7.1",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
}
}