-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.71 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
{
"name": "axum",
"version": "0.1.14",
"description": "Pi-based coding agent distribution with bundled Hermes Memory extension",
"license": "FSL-1.1-ALv2",
"type": "module",
"bin": {
"axum": "bin/axum.js",
"code": "bin/code.js"
},
"scripts": {
"test": "node --test test/*.test.js",
"code": "node bin/axum.js code",
"chat": "node bin/axum.js chat",
"update": "node bin/axum.js update",
"install": "node bin/axum.js install",
"web": "node bin/axum.js web",
"build": "node --check bin/axum.js && node --check bin/code.js && node --check src/bundled-pi-packages.js && node --check src/bundled-pi-platform.js && node --check src/bundled-pi-cache.js && node --check src/resolve-bundled-pi.js && node --check src/ensure-bundled-pi.js && node --check src/bundled-pi-patches.js && node --check src/provider-config.js && node --check src/system-prompt-config.js && node --check src/session-store.js && node --check src/provider-web.js && node --check src/pi-web-chat.js && node --check src/version-config.js",
"prepack": "npm run build && npm test",
"pack:dry": "npm pack --dry-run",
"prepare": "npm run build"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@agegr/pi-web": "^0.8.11"
},
"files": [
"bin/",
"src/",
"plugin/",
"!plugin/pi-context",
"skills/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SakuraByteCore/AxumAgent.git"
},
"homepage": "https://github.com/SakuraByteCore/AxumAgent#readme",
"bugs": {
"url": "https://github.com/SakuraByteCore/AxumAgent/issues"
},
"keywords": [
"pi",
"coding-agent",
"hermes-memory",
"agent",
"cli"
]
}