leduo-patrol 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ <!doctype html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <link rel="icon" type="image/png" href="/assets/brand-icon.png" />
7
+ <title>leduo-patrol</title>
8
+ <script type="module" crossorigin src="/assets/index-BbPJ87hi.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-yhylkmhc.css">
10
+ </head>
11
+ <body>
12
+ <div id="root"></div>
13
+ </body>
14
+ </html>
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "leduo-patrol",
3
+ "version": "1.0.0",
4
+ "description": "乐多汪汪队(leduo-patrol)web console for driving Claude Code over ACP.",
5
+ "type": "module",
6
+ "main": "dist/server/index.js",
7
+ "scripts": {
8
+ "dev": "concurrently -k \"npm:dev:web\" \"npm:dev:server\"",
9
+ "dev:web": "vite",
10
+ "dev:server": "tsx watch server/index.ts",
11
+ "build": "npm run build:web && npm run build:server",
12
+ "build:web": "vite build",
13
+ "build:server": "rm -rf dist/server && tsc -p tsconfig.server.json",
14
+ "start": "node dist/server/index.js",
15
+ "check": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
16
+ "test": "tsx --test server/__tests__/*.test.ts src/__tests__/*.test.ts",
17
+ "prepack": "npm run build"
18
+ },
19
+ "keywords": [],
20
+ "author": "",
21
+ "license": "ISC",
22
+ "dependencies": {
23
+ "@agentclientprotocol/sdk": "^0.15.0",
24
+ "@xterm/addon-fit": "^0.11.0",
25
+ "@xterm/xterm": "^6.0.0",
26
+ "@zed-industries/claude-code-acp": "^0.16.2",
27
+ "express": "^5.2.1",
28
+ "node-pty": "^1.1.0",
29
+ "react": "^19.2.4",
30
+ "react-dom": "^19.2.4",
31
+ "ws": "^8.19.0"
32
+ },
33
+ "devDependencies": {
34
+ "@playwright/test": "^1.58.2",
35
+ "@types/express": "^5.0.6",
36
+ "@types/node": "^25.3.5",
37
+ "@types/react": "^19.2.14",
38
+ "@types/react-dom": "^19.2.3",
39
+ "@types/ws": "^8.18.1",
40
+ "@vitejs/plugin-react": "^5.1.4",
41
+ "concurrently": "^9.2.1",
42
+ "tsx": "^4.21.0",
43
+ "typescript": "^5.9.3",
44
+ "vite": "^7.3.1"
45
+ },
46
+ "bin": {
47
+ "leduo-patrol": "dist/server/index.js"
48
+ },
49
+ "files": [
50
+ "dist",
51
+ "README.md"
52
+ ]
53
+ }