-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 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
53
54
55
56
57
58
{
"name": "@devxiyang/agent-kernel",
"version": "0.2.1",
"description": "Agent kernel and loop library",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devxiyang/agent.kernel.git"
},
"keywords": [
"agent",
"agent-runtime",
"llm",
"tools",
"kernel",
"typescript"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./agent": {
"types": "./dist/core/agent/index.d.ts",
"import": "./dist/core/agent/index.js"
},
"./kernel": {
"types": "./dist/core/kernel/index.d.ts",
"import": "./dist/core/kernel/index.js"
},
"./event-stream": {
"types": "./dist/event-stream.d.ts",
"import": "./dist/event-stream.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"clean": "rm -rf dist",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@sinclair/typebox": "^0.34.48",
"lru-cache": "^11.2.6"
}
}