-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 962 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 962 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
{
"name": "@zhin.js/agent",
"version": "0.1.10",
"description": "Zhin AI Agent — session, ZhinAgent, init; composes @zhin.js/core providers and tools",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"development": "./src/index.ts",
"import": "./lib/index.js"
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib"
},
"dependencies": {
"@zhin.js/ai": "workspace:*",
"@zhin.js/core": "workspace:*",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.0",
"typescript": "^6.0.0",
"rimraf": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhinjs/zhin.git",
"directory": "packages/agent"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}