-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "fantasy-rpg-world",
"version": "0.1.0",
"description": "Slice-of-Life Fantasy RPG - Game Design Documents and Development",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "npm run lint:md && npm run lint:format",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#.worktrees\"",
"lint:format": "prettier --check .",
"format": "prettier --write .",
"format:cs": "dotnet format --no-restore",
"danger": "danger ci",
"danger:local": "danger local"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"danger": "^12.3.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"markdownlint-cli2": "^0.17.1",
"prettier": "^3.4.2"
},
"lint-staged": {
"*.cs": "./scripts/format-cs.sh",
"*.md": [
"prettier --write",
"markdownlint-cli2 --fix"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=22.0.0"
}
}