-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 KB
/
package.json
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
{
"name": "langchain-ts",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"test:watch": "npm test -- --watch",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/akanto/langchain-ts.git"
},
"keywords": [
"langchain",
"ai"
],
"author": "Attila Kanto",
"license": "MIT",
"bugs": {
"url": "https://github.com/akanto/langchain-ts/issues"
},
"homepage": "https://github.com/akanto/langchain-ts#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.18.2",
"js-tiktoken": "^1.0.12",
"langchain": "^0.1.2",
"morgan": "^1.10.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5",
"@types/sinon": "^17.0.3",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"nodemon": "^3.0.3",
"nyc": "^15.1.0",
"prettier": "^3.3.1",
"sinon": "^17.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}