-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "@impossible-g/react-agent-template",
"version": "0.1.0",
"private": true,
"description": "A local-first TypeScript ReAct agent template with native MCP tools.",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc --noEmit",
"clean": "node scripts/clean.mjs",
"dev": "tsx watch src/cli.ts",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"start": "node dist/cli.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"verify": "npm run format && npm run lint && npm run check && npm run test:coverage && npm run build"
},
"dependencies": {
"@langchain/core": "1.2.12",
"@langchain/langgraph": "1.4.17",
"@langchain/mcp-adapters": "1.1.4",
"@langchain/openai": "1.5.13",
"langchain": "1.5.12",
"commander": "15.0.0",
"pino": "10.3.1",
"zod": "4.6.5"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "5.0.1",
"eslint": "10.11.0",
"prettier": "3.6.2",
"tsx": "4.23.15",
"typescript": "6.0.3",
"typescript-eslint": "8.70.1",
"vitest": "5.0.1"
},
"bin": {
"impossible-agent": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}