-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
{
"name": "@datasqrl/acorn-node",
"version": "1.1.1",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"build": "tsup src/index.ts src/modules/langchain/index.ts src/modules/openai/index.ts src/modules/anthropic/index.ts --format cjs,esm --dts",
"release": "release-it --'hooks.before:init=\"npm run build && npm run test\"'",
"prepare": "husky"
},
"lint-staged": {
"*.{json,ts,md}": "prettier --write --ignore-unknown"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": "./dist/index.js",
"./langchain": "./dist/modules/langchain/index.js",
"./openai": "./dist/modules/openai/index.js",
"./anthropic": "./dist/modules/anthropic/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataSQRL/acorn-node.git"
},
"author": "Dmytro Khyzhniak",
"bugs": {
"url": "https://github.com/DataSQRL/acorn-node/issues"
},
"homepage": "https://github.com/DataSQRL/acorn-node#readme",
"license": "ISC",
"devDependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@langchain/core": "^0.3.26",
"@langchain/langgraph": "^0.2.36",
"@swc/core": "^1.10.1",
"babel-jest": "^29.7.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"openai": "^4.77.0",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.33.0",
"@langchain/core": ">=0.3.0",
"@langchain/langgraph": ">=0.2.0",
"openai": ">=4.0.0",
"zod": ">=3.0.0"
},
"dependencies": {
"ajv": "^8.17.1",
"graphql": "^16.10.0",
"uuid": "^11.0.3"
}
}