-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@huberp/agentloop",
"version": "1.0.0",
"description": "TypeScript LangChain Agent Loop with Mistral LLM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:clean": "rimraf dist && tsc --project tsconfig.json",
"start": "npx tsx src/index.ts",
"startCli": "npx tsx src/start-cli.ts",
"startTui": "npx tsx src/start-tui.ts",
"oneshot": "npx tsx src/start-oneshot.ts",
"start:prod": "node dist/index.js",
"test": "jest",
"test:e2e": "jest --config jest.e2e.config.js",
"bench": "npx tsx benchmarks/run-all.ts",
"bench:profile": "node --prof --require tsx/cjs benchmarks/run-all.ts",
"prepublishOnly": "npm run build:clean && npm test"
},
"keywords": [
"langchain",
"mistral",
"agent",
"typescript"
],
"author": "P Huber",
"license": "MIT",
"dependencies": {
"@langchain/core": "^1.1.39",
"@langchain/langgraph": "^1.2.8",
"@langchain/mistralai": "^1.0.7",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"diff": "^8.0.4",
"dotenv": "^17.4.1",
"duck-duck-scrape": "^2.2.7",
"ink": "^6.8.0",
"js-tiktoken": "^1.0.21",
"jsdom": "^24.1.3",
"mathjs": "^15.2.0",
"pino": "^9.9.0",
"react": "^19.2.5",
"simple-git": "^3.35.2",
"tidy-url": "^1.18.3",
"tsx": "^4.21.0",
"turndown": "^7.2.4"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/jest": "^30.0.0",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/turndown": "^5.0.6",
"jest": "^30.3.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"typescript": "^5.4.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleNameMapper": {
"^@modelcontextprotocol/sdk/(.*)$": "<rootDir>/node_modules/@modelcontextprotocol/sdk/dist/cjs/$1",
"^uuid$": "<rootDir>/node_modules/uuid/dist/index.js",
"^@exodus/bytes/(.*)$": "<rootDir>/tests/jest-shims/exodus-bytes-encoding.cjs"
}
}
}