forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 937 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
{
"name": "test-exports-cjs",
"version": "0.0.0",
"private": true,
"description": "CJS Tests for the things exported by the langchain package",
"main": "./index.mjs",
"scripts": {
"build": "tsc",
"test": "npm run test:esm && npm run test:cjs && npm run test:cjs:import && npm run test:entrypoints && npm run test:ts",
"test:esm": "node src/index.mjs",
"test:cjs": "node src/require.js",
"test:cjs:import": "node src/import.js",
"test:entrypoints": "node src/entrypoints.js",
"test:ts": "node dist/index.js",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"author": "LangChain",
"license": "MIT",
"dependencies": {
"d3-dsv": "2",
"hnswlib-node": "^1.4.2",
"langchain": "workspace:*"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^18.15.11",
"prettier": "^2.8.3",
"typescript": "^5.0.0"
}
}