-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "@webeleon/johnny-bmad",
"version": "0.2.0",
"description": "CLI tool to automate BMAD implementation phase using Claude Code",
"type": "module",
"bin": {
"johnny-bmad": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"test": "bun test",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"prepare": "husky",
"prepublishOnly": "bun run build",
"publish:npm": "bun run build && npm publish --access public && git tag v$(npm pkg get version | tr -d '\"') && git push origin v$(npm pkg get version | tr -d '\"')"
},
"lint-staged": {
"*.{ts,js}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"dependencies": {
"chalk": "^5.4.1",
"inquirer": "^9.3.7",
"yaml": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@types/bun": "latest",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.x",
"husky": "9.1.7",
"lint-staged": "16.2.7"
},
"engines": {
"node": ">=18"
},
"keywords": [
"bmad",
"claude",
"automation",
"cli",
"ai",
"llm",
"code-generation"
],
"author": "Julien Prugne <julien@webeleon.dev>",
"contributors": [
"Julien Prugne <julien@webeleon.dev>",
"Claude (Anthropic)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webeleon/johnny-bmad.git"
},
"bugs": {
"url": "https://github.com/webeleon/johnny-bmad/issues"
},
"homepage": "https://github.com/webeleon/johnny-bmad#readme",
"license": "MIT"
}