-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2 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
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
{
"name": "learn-langchainjs",
"version": "1.0.0",
"description": "Learn how to use langchainjs with a collection of basic examples",
"keywords": [
"ai",
"artificial intelligence",
"javascript",
"typescript",
"gpt",
"gpt-35-turbo"
],
"license": "AGPL",
"author": {
"name": "Tim Pietrusky",
"url": "https://github.com/TimPietrusky/"
},
"contributors": [],
"type": "module",
"main": "n.a.",
"scripts": {
"docs": "md-magic --ignore 'node_modules'",
"start": "node index.js",
"prepare": "husky install",
"spj": "npx sort-package-json",
"test": "jest",
"toc": "npx markdown-toc README.md -i"
},
"lint-staged": {
"*.{ts}": [
"npx prettier --write"
],
"package.json": [
"npx sort-package-json",
"npx prettier --write"
],
"*.md": [
"npx prettier --write"
],
"README.md": [
"npx markdown-toc -i"
]
},
"dependencies": {
"@types/jest": "^29.5.0",
"chalk": "5.2.0",
"dotenv": "16.0.3",
"execa": "7.1.1",
"hnswlib-node": "1.4.2",
"inquirer": "9.2.0",
"inquirer-autocomplete-prompt": "3.0.0",
"langchain": "0.0.64",
"ora": "6.3.0",
"prettier": "2.8.7",
"simple-git": "3.18.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@swc/core": "^1.3.49",
"@swc/jest": "^0.2.24",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-typescript": "^3.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^46.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"markdown-magic": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 18"
}
}