-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 783 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "oct-agent",
"private": true,
"description": "OCT-Agent — One-click AI agent with persistent memory. Built on OpenClaw.",
"workspaces": [
"packages/cli",
"packages/desktop"
],
"scripts": {
"dev:desktop": "cd packages/desktop && npm run dev",
"build:desktop": "cd packages/desktop && npm run build",
"build:cli": "cd packages/cli && npm run build",
"package:win": "cd packages/desktop && npm run package:win",
"package:mac": "cd packages/desktop && npm run package:mac",
"package:linux": "cd packages/desktop && npm run package:linux",
"fix-openclaw": "node scripts/fix-openclaw-plugin.js",
"postinstall": "node scripts/fix-openclaw-plugin.js"
},
"engines": {
"node": ">=22.0.0"
},
"license": "Apache-2.0"
}