-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "langchain-ts-starter",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc --declaration --outDir dist/",
"start": "tsx -r dotenv/config src/index.ts",
"start:dist": "yarn build && node -r dotenv/config dist/index.js",
"lint": "eslint src quotesAPI",
"lint:fix": "npm run lint --fix",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --list-different \"**/*.ts\""
},
"keywords": [
"langchain",
"starter",
"template",
"node",
"typescript",
"llm"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@exodus/schemasafe": "^1.0.1",
"dotenv": "^16.0.3",
"langchain": "^0.0.59",
"openai": "^3.2.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/js-yaml": "^4",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
}
}