-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 973 Bytes
/
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
{
"name": "bakedex",
"version": "1.0.0",
"description": "Showdex asset bundle repository",
"author": "Keith Choison <keith@tize.io>",
"license": "AGPL-3.0",
"homepage": "https://bake.dex.tize.io",
"repository": {
"type": "git",
"url": "git+https://github.com/doshidak/bakedex.git"
},
"packageManager": "yarn@1.22.22",
"private": true,
"engines": {
"node": "^18.0.0",
"yarn": "^1.22.0"
},
"type": "module",
"scripts": {
"patch-ghooks": "./scripts/patch-ghooks.sh",
"commit": "./node_modules/cz-customizable/standalone.js",
"cm": "yarn commit",
"cz": "yarn commit",
"postinstall": "yarn patch-ghooks"
},
"config": {
"cz-customizable": {
"config": ".cz-config.cjs"
},
"ghooks": {
"commit-msg": "npx cz-customizable-ghooks $2"
}
},
"dependencies": {},
"devDependencies": {
"cz-customizable": "^7.2.1",
"cz-customizable-ghooks": "^2.0.0",
"ghooks": "^2.0.4"
}
}