-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 905 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 905 Bytes
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
{
"name": "git-that-semver",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/bun": "^1.2.19",
"@types/lodash-es": "^4.17.12",
"@types/semver": "^7.7.0",
"@types/slug": "^5.0.9",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "3.8.0"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"liquidjs": "^10.21.1",
"lodash-es": "^4.17.21",
"merge-anything": "^6.0.6",
"semver": "^7.7.2",
"slug": "^11.0.0",
"yaml": "^2.8.0",
"zod": "^4.0.13"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"prepare": "husky",
"lint": "prettier --check .",
"lint-fix": "prettier --write ."
}
}