-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 946 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 946 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
{
"name": "miniclaw",
"version": "0.9.5",
"description": "A minimalist micro-kernel agent with ACE, memory, skills, and cron scheduler — inspired by OpenClaw",
"main": "dist/index.js",
"type": "module",
"bin": {
"miniclaw": "./dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"README_EN.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/8421bit/miniclaw.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:daemon": "node dist/daemon.js",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.1",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}