forked from kaiban-ai/KaibanJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.78 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
84
{
"name": "agenticjs",
"version": "0.1.0",
"description": "AI Multi-Agent library for Javascript Developers.",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"unpkg": "dist/bundle.umd.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npx rollup -c",
"build:test": "NODE_ENV=development TEST_ENV=mocked-llm-apis npx rollup -c",
"dev": "NODE_ENV=development npx rollup -c -w",
"test": "npm run build:test && npm run test:integration",
"test:watch": "TEST_ENV=mocked-llm-apis jest --testPathPattern='tests/e2e' --watch",
"test:debug": "TEST_ENV=real-llm-apis node --inspect-brk node_modules/.bin/jest --runInBand --verbose --testPathPattern='tests/e2e'",
"test:prod": "npm run build && jest --testPathPattern='tests/e2e'",
"test:integration": "TEST_ENV=mocked-llm-apis jest --testPathPattern='tests/e2e'",
"test:e2e": "TEST_ENV=real-llm-apis jest --testPathPattern='tests/e2e'",
"test:unit": "jest --testPathPattern='tests/unit' --watch",
"test:unit:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --verbose --testPathPattern='tests/unit'",
"play:react": "cd playground/react && npm run dev",
"play:sb": "cd playground/react && npm run storybook",
"play:node": "cd playground/nodejs && node index.js"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/AI-Champions/AgenticJS"
},
"author": "AI Champions",
"license": "MIT",
"homepage": "https://agenticjs.com",
"bugs": {
"url": "https://github.com/AI-Champions/AgenticJS/issues"
},
"keywords": [
"ai agents",
"multi-agent systems",
"javascript",
"framework",
"node.js",
"react",
"vue",
"angular",
"nextjs",
"real-time",
"visualization"
],
"dependencies": {
"@langchain/anthropic": "0.2.3",
"@langchain/community": "0.2.19",
"@langchain/core": "0.2.16",
"@langchain/google-genai": "0.0.21",
"@langchain/mistralai": "0.0.25",
"@langchain/openai": "0.2.2",
"ansis": "^3.3.2",
"langchain": "0.2.10",
"loglevel": "^1.9.1",
"p-queue": "^8.0.1",
"uuid": "10.0.0",
"zod-to-json-schema": "^3.23.2",
"zustand": "4.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.24.8",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.7",
"babel-jest": "^29.7.0",
"dotenv": "16.4.5",
"eslint": "7.32.0",
"jest": "29.7.0",
"prettier": "2.3.2",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2"
},
"engines": {
"node": ">=12.0.0"
}
}