-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 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
{
"name": "bmalph",
"version": "2.11.0",
"description": "Unified AI Development Framework - BMAD phases with Ralph execution loop",
"type": "module",
"bin": {
"bmalph": "./bin/bmalph.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:coverage": "vitest run --coverage",
"test:bash": "node scripts/run-bash-tests.mjs",
"test:all": "npm run test && npm run test:e2e && npm run test:bash",
"check": "npm run lint && npm run build && npm test",
"dev": "tsc --watch",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"fmt:check": "prettier --check .",
"fmt:fix": "prettier --write .",
"type-check": "tsc --noEmit",
"ci": "npm run type-check && npm run lint && npm run fmt:check && npm run build && npm run test:all",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"prepack": "npm run build",
"prepublishOnly": "npm run lint && npm run build && npm run test:all",
"update-bundled": "bash scripts/update-bundled.sh"
},
"keywords": [
"claude",
"ai",
"development",
"framework",
"agents",
"bmad",
"ralph",
"autonomous",
"coding-assistant"
],
"author": "Lars Cowe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LarsCowe/bmalph.git"
},
"homepage": "https://github.com/LarsCowe/bmalph#readme",
"bugs": {
"url": "https://github.com/LarsCowe/bmalph/issues"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/",
"dist/",
"!dist/**/*.map",
"bmad/",
"ralph/",
"slash-commands/",
"bundled-versions.json"
],
"dependencies": {
"@inquirer/confirm": "^5.1.9",
"@inquirer/input": "^4.1.9",
"@inquirer/select": "^4.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}