-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "@trystan2k/dotfiles",
"version": "18.1.1",
"description": "My personal dotfiles",
"keywords": [
"brew",
"dotfiles",
"macos",
"trystan2k"
],
"homepage": "https://github.com/trystan2k/dotfiles#readme",
"bugs": {
"url": "https://github.com/trystan2k/dotfiles/issues"
},
"repository": "github:trystan2k/dotfiles",
"type": "module",
"scripts": {
"clean": "rm -rf node_modules",
"cz": "git-cz",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm run lint:bash",
"lint:bash": "bash shellcheck.sh",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"prepare": "husky",
"push": "git push && git push --tags",
"release": "standard-version -a",
"release:as": "standard-version --release-as"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/cz-commitlint": "^20.5.1",
"commitizen": "^4.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.43.0",
"standard-version": "^9.5.0"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.sh": [
"pnpm run lint:bash"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"engines": {
"node": "^24.14.1",
"pnpm": "^10.33.0"
},
"packageManager": "pnpm@10.33.0",
"standard-version": {
"releaseCommitMessageFormat": "chore: release {{currentTag}}"
}
}