-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 940 Bytes
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
{
"name": "octo-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"codag": "./dist/index.js"
},
"scripts": {
"start": "tsx index.ts",
"dev": "tsx watch index.ts",
"build": "tsc -p tsconfig.json",
"postbuild": "chmod +x dist/index.js",
"exec": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@langchain/anthropic": "^1.1.1",
"@langchain/classic": "^1.0.4",
"@langchain/cohere": "^1.0.0",
"@langchain/core": "^1.0.6",
"@langchain/mistralai": "^1.0.0",
"@langchain/textsplitters": "^1.0.0",
"@types/js-yaml": "^4.0.9",
"dotenv": "^17.2.3",
"enquirer": "^2.4.1",
"ignore": "^7.0.5",
"js-yaml": "^4.1.1",
"langchain": "^1.0.6",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}