-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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
{
"name": "warden-code",
"version": "1.14.0",
"description": "Interactive CLI for bootstrapping Warden agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"warden": "./dist/cli/index.js"
},
"files": [
"dist",
"!dist/**/*.test.*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && cp -r src/templates dist/ && cp src/frontend/index.html dist/templates/frontend.html",
"dev": "tsc --watch",
"cli": "node dist/cli/index.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"warden",
"agent",
"cli",
"a2a",
"langgraph",
"ai",
"scaffolding",
"generator"
],
"author": "Warden Protocol",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/warden-protocol/agent-kit.git",
"directory": "warden"
},
"bugs": {
"url": "https://github.com/warden-protocol/agent-kit/issues"
},
"homepage": "https://github.com/warden-protocol/agent-kit/tree/main/warden#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.4.1",
"openai": "^6.21.0",
"ora": "^8.1.1",
"viem": "^2.46.2"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}