-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 806 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 806 Bytes
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
{
"name": "mm-cli",
"version": "0.2.1",
"description": "Developer tool that operationalizes the 4 disciplines of AI input with measurable eval outcomes",
"type": "module",
"bin": {
"mm": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"ai",
"skills",
"eval",
"context-engineering",
"claude",
"prompt-engineering"
],
"license": "AGPL-3.0-only",
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}