-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 950 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 950 Bytes
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
{
"name": "@orq-ai/node",
"version": "4.8.1",
"author": "Orq",
"exports": {
"./*": "./*",
"./langchain": {
"import": "./langchain/index.mjs",
"require": "./langchain/index.js",
"types": "./langchain/index.d.mts"
},
".": {
"import": "./index.js",
"require": "./index.js",
"types": "./index.d.ts"
}
},
"main": "./index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/orq-ai/orq-node.git"
},
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@langchain/core": "^1.1.39",
"zod": ">= 3 <4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"eslint": "^9.26.0",
"globals": "^15.14.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"zod": "^3.25.0 || ^4.0.0"
}
}