-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "openclaw-mini",
"version": "0.1.0",
"description": "OpenClaw 核心架构的极简复现,用于学习 AI Agent 的系统级设计",
"keywords": [
"openclaw",
"agent",
"llm",
"ai-agent",
"gateway",
"typescript",
"teaching"
],
"license": "MIT",
"homepage": "https://github.com/voocel/openclaw-mini#readme",
"bugs": {
"url": "https://github.com/voocel/openclaw-mini/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voocel/openclaw-mini.git"
},
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**",
"src/**",
"examples/**",
"workspace-templates/**",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/src/index.js",
"./gateway": "./dist/src/gateway/index.js"
},
"bin": {
"openclaw-mini": "dist/src/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/src/cli.js",
"test": "node --import tsx --test test/*.test.ts",
"prepack": "npm run build",
"pack:check": "npm pack --dry-run",
"chat": "tsx src/cli.ts chat",
"gateway": "tsx src/gateway/gateway-cli.ts serve",
"gateway:serve": "tsx src/gateway/gateway-cli.ts serve",
"gateway:connect": "tsx src/gateway/gateway-cli.ts connect",
"channel:telegram": "tsx src/channels/channel-cli.ts telegram",
"example": "tsx examples/basic.ts",
"example:basic": "tsx examples/basic.ts",
"example:custom-tools": "tsx examples/custom-tools.ts",
"example:gateway": "tsx examples/gateway-roundtrip.ts"
},
"dependencies": {
"@mariozechner/pi-ai": "0.50.7",
"grammy": "^1.41.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.23.0"
}