-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "wardrobe",
"version": "2024.05.29",
"description": "A wardrobe of assets for WolStar",
"author": "WolfStar Project",
"license": "CC BY-NC-SA 4.0",
"private": true,
"scripts": {
"format": "prettier --write \"*.md\" \"package.json\""
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@sapphire/prettier-config": "^2.0.0",
"cz-conventional-changelog": "^3.3.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wolfstar-project/wardrobe.git"
},
"engines": {
"node": ">=16",
"npm": ">=7.24.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]",
"volta": {
"node": "20.18.2",
"yarn": "4.6.0"
}
}