-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@next-open-ai/openclawx",
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"description": "OpenClawX - A professional desktop application for managing and executing AI agents with real-time chat, session management, and skills browsing.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"skills",
"presets",
"README.md",
"apps/desktop/renderer/dist"
],
"bin": {
"openbot": "./dist/cli/cli.js"
},
"dependencies": {
"@instantlyeasy/claude-code-sdk-ts": "^0.3.3",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@mariozechner/pi-ai": "^0.51.2",
"@mariozechner/pi-coding-agent": "^0.51.2",
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/platform-socket.io": "^10.3.0",
"@nestjs/websockets": "^10.3.0",
"@opencode-ai/sdk": "^1.2.10",
"@sinclair/typebox": "^0.34.41",
"adm-zip": "^0.5.16",
"agent-browser": "^0.8.5",
"commander": "^14.0.2",
"croner": "^9.1.0",
"dingtalk-stream": "^2.1.4",
"duck-duck-scrape": "^2.2.7",
"multer": "^1.4.5-lts.1",
"node-llama-cpp": "^3.15.0",
"qq-guild-bot": "^2.9.5",
"qrcode": "^1.5.4",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"sql.js": "^1.13.0",
"vectra": "^0.12.3",
"wechaty": "^1.20.2",
"ws": "^8.19.0"
},
"devDependencies": {
"@nestjs/testing": "^10.3.0",
"@types/adm-zip": "^0.5.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/multer": "^2.0.0",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"@types/sql.js": "^1.4.9",
"@types/ws": "^8.18.1",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.5",
"typescript": "^5.7.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"build:web": "cd apps/desktop && npm run build:renderer",
"build:all": "npm run build && npm run build:web",
"prepublishOnly": "npm run build && cd apps/desktop && npm run build:renderer",
"start": "node dist/cli/cli.js",
"run": "node dist/cli/cli.js",
"dev": "npm run build && node dist/cli/cli.js",
"desktop:dev": "cd apps/desktop && npm run dev",
"desktop:build": "cd apps/desktop && npm run build",
"desktop:pack": "npm run build && cd apps/desktop && npm run build",
"desktop:install": "cd apps/desktop && npm install",
"test": "jest --config test/jest.config.cjs",
"test:memory": "node test/run-memory.mjs",
"test:e2e": "OPENBOT_DB_PATH=:memory: jest --config test/jest.config.cjs --testPathPattern=e2e",
"test:gateway-e2e": "npm run build && node test/gateway/server.e2e.mjs",
"test:env": "npm run build && node test/env-resolution.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"skill",
"agent",
"cli",
"llm",
"openbot"
],
"license": "MIT"
}