-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 868 Bytes
/
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
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": "",
"keywords": [],
"author": {
"name": "",
"email": "",
"url": ""
},
"contributors": [],
"scripts": {
"build": "tsc",
"start": "NODE_OPTIONS='--no-warnings=ExperimentalWarning' node ./dist/app.js",
"dev": "NODE_OPTIONS='--no-warnings=ExperimentalWarning' ts-node --esm ./src/app.ts"
},
"dependencies": {
"@types/node": "^18.15.11",
"dotenv": "^16.0.3",
"langchain": "^0.0.43",
"openai": "^3.2.1",
"serpapi": "^1.1.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"ts-node": "^10.9.1"
}
}