-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 KB
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
{
"type": "module",
"name": "@amitdeshmukh/ax-crew",
"version": "9.0.2",
"description": "Build and launch a crew of AI agents with shared state. Built with axllm.dev",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=21.0.0"
},
"scripts": {
"postinstall": "node scripts/install-skills.mjs",
"preuninstall": "node scripts/uninstall-skills.mjs",
"build": "rm -rf dist && tsc --outDir dist",
"release": "npm run build && npm publish --access public",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"big.js": "^7.0.1",
"decimal.js": "^10.5.0",
"dotenv": "^16.4.5",
"upgrade": "^1.1.0",
"uuid": "^10.0.0"
},
"peerDependencies": {
"@ax-llm/ax": "^19.0.11",
"@ax-llm/ax-tools": "^19.0.11",
"@opentelemetry/api": "^1.9.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@types/big.js": "^6.2.2",
"@types/node": "^20.19.21",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.0.9",
"@vitest/ui": "^3.0.9",
"typescript": "^5.5.3",
"vitest": "^3.0.9"
},
"homepage": "https://github.com/amitdeshmukh/ax-crew#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/amitdeshmukh/ax-crew.git"
},
"bugs": {
"url": "https://github.com/amitdeshmukh/ax-crew/issues"
},
"license": "MIT"
}