forked from ConardLi/easy-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "easy-agent",
"version": "0.1.0",
"description": "A terminal-native agentic coding system",
"type": "module",
"main": "dist/entrypoint/cli.js",
"bin": {
"agent": "dist/entrypoint/cli.js"
},
"scripts": {
"dev": "tsx src/entrypoint/cli.ts",
"build": "tsc",
"start": "node dist/entrypoint/cli.js",
"test:streaming": "tsx src/scripts/test-streaming.ts",
"test:tasks": "tsx src/scripts/test-tasks.ts",
"test:mcp": "tsx src/scripts/test-mcp.ts",
"test:skills": "tsx src/scripts/test-skills.ts"
},
"keywords": [
"agent",
"cli",
"coding",
"ai"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.2",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^19.2.14",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.85.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.6.2",
"dotenv": "^17.4.1",
"ignore": "^7.0.5",
"ink": "^7.0.0",
"proper-lockfile": "^4.1.2",
"react": "^19.2.4",
"yaml": "^2.8.3"
}
}