forked from ColinEberhardt/langchain-mini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 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
{
"name": "langchain-mini",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node --no-warnings --experimental-vm-modules $( [ -f ./node_modules/.bin/jest ] && echo ./node_modules/.bin/jest || which jest )",
"mortadelo": "ts-node index.ts",
"debug": "MORTADELO_DEBUG=true ts-node index.ts"
},
"author": "",
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"dependencies": {
"@cyber2024/pdf-parse-fixed": "^1.2.5",
"dotenv": "^16.0.3",
"expr-eval": "^2.0.2",
"googlethis": "^1.7.1",
"html-to-text": "^9.0.5",
"playwright": "^1.37.0"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./test-setup.ts"
]
},
"devDependencies": {
"@types/html-to-text": "^9.0.1",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}