-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 821 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 821 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
40
{
"name": "magpie",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"bin": {
"magpie": "./dist/cli.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest",
"test:run": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@google/generative-ai": "^0.24.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"openai": "^6.16.0",
"ora": "^9.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^25.0.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}