-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.66 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
{
"name": "remoteclaw",
"version": "1.0.2",
"main": "dist-electron/main.js",
"description": "Native Linux desktop app for RemoteClaw for Linux — remote access to your OpenClaw installation over Tailscale",
"keywords": [
"openclaw",
"openclaw-gui",
"ai-agent-dashboard",
"local-ai-management-tool",
"ai-dashboard",
"ai-agents",
"mission-control",
"self-hosted-ai",
"llm-management",
"ai-model-manager",
"vector-memory",
"ai-cron-jobs",
"open-source-ai",
"private-ai",
"developer-tools"
],
"license": "MIT",
"author": {
"name": "SamaritanOC",
"email": "admin@seeker.one"
},
"repository": {
"type": "git",
"url": "https://github.com/SamaritanOC/remoteclaw.git"
},
"homepage": "https://github.com/SamaritanOC/remoteclaw",
"bin": {
"remoteclaw": "./bin/cli.mjs"
},
"scripts": {
"dev": "next dev -H 127.0.0.1 -p 3000 --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"dashboard": "node bin/cli.mjs",
"setup": "./setup.sh",
"setup:dev": "./setup.sh --dev --no-service",
"electron:dev": "NODE_ENV=development electron .",
"electron:build": "tsc -p tsconfig.electron.json && electron-builder --publish never",
"electron:compile": "tsc -p tsconfig.electron.json"
},
"dependencies": {
"electron-updater": "^6.3.9",
"@ai-sdk/react": "^3.0.88",
"@base-ui/react": "^1.2.0",
"@monaco-editor/react": "^4.7.0",
"@types/turndown": "^5.0.6",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "^12.10.0",
"ai": "^6.0.86",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"lucide-react": "^0.564.0",
"marked": "^17.0.2",
"next": "16.1.6",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"recharts": "^2.15.4",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.6.0",
"turndown": "^7.2.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/dagre": "^0.7.53",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/wait-on": "^5.3.4",
"concurrently": "^9.2.1",
"electron": "^41.0.3",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"playwright": "^1.58.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"wait-on": "^9.0.4"
}
}