-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.67 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$schema": "https://json.schemastore.org/package.json",
"name": "bmad-game-dev-studio",
"version": "0.2.2",
"private": true,
"description": "A BMad MEthod Core Module that offers a substantial stand alone module for Game Development across multiple supported platforms",
"keywords": [
"bmad",
"game-dev"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bmad-code-org/bmad-module-game-dev-studio.git"
},
"license": "MIT",
"author": "Brian (BMad) Madison",
"type": "module",
"main": "",
"scripts": {
"docs:build": "node tools/build-docs.mjs",
"docs:dev": "astro dev --root website",
"docs:preview": "astro preview --root website",
"format:check": "prettier --check \"**/*.{js,cjs,mjs,json,yaml}\"",
"format:fix": "prettier --write \"**/*.{js,cjs,mjs,json,yaml}\"",
"lint": "eslint . --ext .js,.cjs,.mjs,.yaml --max-warnings=0",
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"prepare": "husky || exit 0",
"release": "npm run release:patch",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"release:prerelease": "npm version prerelease && git push --follow-tags",
"test": "npm run lint && npm run lint:md && npm run format:check"
},
"lint-staged": {
"*.{js,cjs,mjs}": [
"npm run lint:fix",
"npm run format:fix"
],
"*.yaml": [
"eslint --fix",
"npm run format:fix"
],
"*.json": [
"npm run format:fix"
],
"*.md": [
"markdownlint-cli2"
]
},
"devDependencies": {
"@astrojs/sitemap": "^3.6.0",
"@astrojs/starlight": "^0.37.0",
"@eslint/js": "^9.33.0",
"archiver": "^7.0.1",
"astro": "^5.16.0",
"c8": "^10.1.3",
"csv-parse": "^6.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-yml": "^1.18.0",
"figlet": "^1.8.0",
"glob": "^11.0.3",
"husky": "^9.1.7",
"ignore": "^7.0.5",
"jest": "^30.0.4",
"js-yaml": "^4.1.0",
"lint-staged": "^16.1.1",
"markdownlint-cli2": "^0.19.1",
"ora": "^5.4.1",
"prettier": "^3.7.4",
"prettier-plugin-packagejson": "^2.5.19",
"semver": "^7.6.3",
"sharp": "^0.33.5",
"wrap-ansi": "^7.0.0",
"xml2js": "^0.6.2",
"yaml": "^2.7.0",
"yaml-eslint-parser": "^1.2.3",
"yaml-lint": "^1.7.0",
"zod": "^3.25.76"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}