-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.23 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
{
"name": "@martin_mohammed/bruce-cli",
"version": "0.1.5",
"type": "module",
"description": "Change intelligence for AI coding agents — Bruce tells Claude (or any coding agent) who depends on this API, what just changed, and how to migrate safely.",
"keywords": [
"cli",
"api",
"breaking-changes",
"change-management",
"ai-agents",
"claude",
"claude-code",
"developer-tools",
"contract-testing",
"microservices"
],
"homepage": "https://github.com/MartinMohammed/bruce-cli#readme",
"bugs": {
"url": "https://github.com/MartinMohammed/bruce-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MartinMohammed/bruce-cli.git"
},
"license": "MIT",
"author": "Martin Mohammed",
"engines": {
"node": ">=20"
},
"bin": {
"bruce": "./bin/bruce.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"src",
"fallback"
],
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^13.1.0",
"picocolors": "^1.1.1",
"tsx": "^4.19.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2"
}
}