-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "youclaw",
"version": "1.0.0",
"type": "module",
"private": true,
"license": "MIT",
"description": "Desktop AI assistant powered by a multi-provider coding agent runtime",
"repository": {
"type": "git",
"url": "https://github.com/CodePhiliaX/youClaw"
},
"author": {
"name": "CodePhiliaX",
"email": "huanyueyaoqin@qq.com"
},
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"validate:recommended-skills": "bun run scripts/validate-recommended-skills.ts",
"dev:web": "cd web && bun run dev",
"dev:tauri": "bun tauri dev",
"build:sidecar": "bun scripts/build-sidecar.mjs",
"build:tauri": "bun run build:sidecar && bun tauri build",
"build:tauri:fast": "bun run build:sidecar && bun tauri build --no-bundle",
"test": "bun test '.test.'",
"test:e2e": "bunx playwright test --config e2e/playwright.config.ts",
"test:e2e:ui": "bunx playwright test --config e2e/playwright.config.ts --ui"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tauri-apps/cli": "^2",
"@types/bun": "latest",
"typescript": "^5.9.3"
},
"dependencies": {
"@cedrugs/pdf-parse": "^1.0.0",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@mariozechner/pi-agent-core": "^0.58.0",
"@mariozechner/pi-ai": "^0.58.0",
"@mariozechner/pi-coding-agent": "^0.58.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@tauri-apps/plugin-opener": "^2.5.3",
"croner": "^10.0.1",
"dingtalk-stream": "^2.1.4",
"fflate": "^0.8.2",
"grammy": "^1.41.1",
"hono": "^4.12.6",
"mammoth": "^1.12.0",
"minimatch": "^10.0.1",
"pdf-parse": "^2.4.5",
"pino": "^10.3.1",
"playwright-core": "^1.58.2",
"qrcode": "^1.5.4",
"ws": "^8.19.0",
"xlsx": "^0.18.5",
"yaml": "^2.8.2",
"zod": "^4.3.6"
}
}