-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "@ax-crew/tools",
"version": "2.1.1",
"description": "A repository of packages that provides tools (functions) that can be used by AxLLM Agents",
"keywords": [],
"homepage": "https://github.com/ax-crew/tools#readme",
"bugs": {
"url": "https://github.com/ax-crew/tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ax-crew/tools.git"
},
"license": "ISC",
"author": "Amit Deshmukh",
"type": "module",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"publish-packages": "npm run build && node scripts/publish-packages.js",
"test:drive-descriptions": "tsx examples/drive.ts"
},
"dependencies": {
"@ax-llm/ax": "^13.0.8"
},
"devDependencies": {
"rimraf": "^5.0.0",
"typescript": "^5.0.0",
"semver": "^7.5.4",
"tsx": "^4.0.0"
},
"resolutions": {
"webpack": "^3.12.0",
"agent-base": "^7.1.3"
}
}