-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "frogo",
"version": "0.1.2",
"description": "Frog v0 incident investigation CLI",
"main": "dist/cli/index.js",
"bin": {
"frogo": "dist/cli/index.js"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && chmod +x dist/cli/index.js",
"start": "npm run build && node dist/cli/index.js",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "npm run build",
"prepack": "npm run build"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.44",
"@ai-sdk/mcp": "^1.0.21",
"@ai-sdk/openai": "^3.0.29",
"@modelcontextprotocol/sdk": "^1.26.0",
"ai": "^6.0.86",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^17.3.1",
"ink": "^5.1.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"node-fetch": "^3.3.2",
"prompts": "^2.4.2",
"react": "^18.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@types/node": "^22.0.0",
"@types/prompts": "^2.4.1",
"@types/react": "^18.3.3",
"eslint": "^8.57.1",
"rimraf": "^5.0.10",
"ts-node": "^10.9.1",
"typescript": "^5.5.6"
},
"engines": {
"node": ">=18"
}
}