-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.28 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.28 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "bmad-builder",
"version": "1.7.0",
"private": true,
"description": "A BMad Core expansion module that guides users through the creation of Modules Workflow and Agents",
"keywords": [
"bmad"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bmad-code-org/bmad-builder.git"
},
"license": "MIT",
"author": "Brian (BMad) Madison",
"type": "module",
"main": "",
"files": [
"skills/",
".claude-plugin/",
"CHANGELOG.md"
],
"scripts": {
"docs:build": "node tools/build-docs.mjs",
"docs:dev": "astro dev --root website",
"docs:preview": "astro preview --root website",
"docs:validate-links": "node tools/validate-doc-links.cjs",
"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"
},
"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.2.0",
"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"
},
"engines": {
"node": ">=22.0.0"
}
}