-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.61 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.61 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
103
{
"name": "seren-desktop",
"version": "0.1.0",
"description": "Open source AI-powered desktop IDE with integrated chat, code completion, and MCP integration",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"tauri": "tauri",
"tauri:dev": "pnpm tauri dev",
"tauri:dev:nowatch": "pnpm tauri dev --no-watch",
"build:openclaw": "tsx scripts/build-openclaw.ts",
"build:openclaw:optional": "tsx scripts/build-openclaw.ts --optional",
"build:sidecar": "tsx scripts/build-sidecar.ts",
"build:sidecar:release": "tsx scripts/build-sidecar.ts release",
"sign:embedded-runtime": "tsx scripts/sign-embedded-runtime.ts",
"sidecar:update": "tsx scripts/update-sidecar.ts",
"generate:api": "openapi-ts -f openapi/openapi-ts.config.ts",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"format": "biome format --write",
"format:check": "biome format",
"check": "biome check",
"check:fix": "biome check --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"prepare:runtime": "tsx build/darwin/prepare-embedded-runtime.ts",
"prepare:runtime:darwin-x64": "tsx build/darwin/prepare-embedded-runtime.ts x64",
"prepare:runtime:darwin-arm64": "tsx build/darwin/prepare-embedded-runtime.ts arm64",
"prepare:runtime:win32-x64": "tsx build/win32/prepare-embedded-runtime.ts x64",
"prepare:runtime:win32-arm64": "tsx build/win32/prepare-embedded-runtime.ts arm64",
"prepare:runtime:linux-x64": "tsx build/linux/prepare-embedded-runtime.ts x64",
"prepare:runtime:linux-arm64": "tsx build/linux/prepare-embedded-runtime.ts arm64",
"prepare:mcp-servers": "tsx scripts/prepare-mcp-servers.ts"
},
"license": "MIT",
"dependencies": {
"@monaco-editor/loader": "^1.7.0",
"@playwright/mcp": "^0.0.68",
"@tailwindcss/vite": "4",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.0",
"highlight.js": "^11.11.1",
"marked": "^17.0.3",
"monaco-editor": "^0.55.1",
"pdfjs-dist": "^5.5.207",
"qrcode": "^1.5.4",
"solid-js": "^1.9.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "4",
"thirdweb": "^5.119.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@hey-api/openapi-ts": "0.93.1",
"@playwright/test": "^1.58.2",
"@tauri-apps/cli": "^2",
"@types/node": "^25.3.3",
"tsx": "^4.19.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.0",
"vitest": "^4.0.18"
},
"publisherVersion": "v1.0.0",
"sidecars": {
"seren-acp-claude": {
"name": "Claude Code",
"git": "https://github.com/serenorg/seren-acp-claude",
"branch": "main",
"bin": "seren-acp-claude",
"dest": "seren-acp-claude"
},
"seren-acp-codex": {
"name": "Codex",
"git": "https://github.com/serenorg/seren-acp-codex",
"branch": "main",
"bin": "seren-acp-codex",
"dest": "seren-acp-codex"
},
"seren-mcp": {
"name": "Seren MCP",
"git": "https://github.com/serenorg/seren",
"tag": "v0.4.0",
"package": "seren-mcp",
"bin": "seren-mcp",
"dest": "seren-mcp"
}
}
}