-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.46 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.46 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
{
"name": "catalyst",
"version": "0.1.0",
"description": "AI-powered development environment with MCP servers and BMAD methodology",
"main": "dist/cli/index.js",
"types": "dist/cli/index.d.ts",
"type": "module",
"bin": {
"catalyst": "./bin/catalyst"
},
"files": [
"dist",
"bin",
"templates",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x bin/catalyst",
"build:watch": "tsc --watch",
"dev": "tsx src/cli/index.ts",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:mcp-servers": "bash scripts/test-mcp-servers.sh",
"clean": "rm -rf dist coverage *.tsbuildinfo",
"clean:all": "npm run clean && rm -rf node_modules",
"check": "npm run type-check && npm run lint && npm run format:check && npm test",
"prepare": "npm run build"
},
"keywords": [
"ai",
"development-tools",
"cli",
"mcp",
"model-context-protocol",
"homebrew",
"typescript",
"bmad",
"local-ai"
],
"author": "azywicki <81277290+NimbleEngineer21@users.noreply.github.com>",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NimbleEngineer21/catalyst.git"
},
"bugs": {
"url": "https://github.com/NimbleEngineer21/catalyst/issues"
},
"homepage": "https://github.com/NimbleEngineer21/catalyst#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"js-yaml": "^4.1.0",
"ora": "^8.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/ui": "^1.6.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}