forked from LetItBe12345/omp_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.8 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "omp-desktop",
"productName": "OMP Desktop",
"version": "0.1.2",
"private": true,
"type": "module",
"description": "OMP 的轻量本地 Agent Desktop",
"author": "LetItBe12345 <guanghaojin56@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/LetItBe12345/omp_app",
"desktopName": "omp-desktop",
"main": "./out/main/index.js",
"engines": {
"node": ">=24 <25"
},
"packageManager": "pnpm@11.15.1",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"runtime:download": "node scripts/download-runtime.mjs",
"runtime:check": "node scripts/download-runtime.mjs --check",
"package:linux": "pnpm runtime:check && pnpm build && electron-builder --linux AppImage deb --x64 --publish never",
"package:check": "node scripts/check-linux-package.mjs",
"start": "electron-vite preview",
"typecheck": "pnpm typecheck:node && pnpm typecheck:web",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"lint": "eslint --cache .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:workspace-session": "vitest run tests/main/desktop-state.test.ts tests/main/runtime-ipc.test.ts tests/renderer/app.test.tsx",
"test:watch": "vitest",
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test",
"smoke": "node scripts/electron-smoke.mjs"
},
"dependencies": {
"electron-log": "^5.4.4",
"ignore": "^7.0.6"
},
"devDependencies": {
"@assistant-ui/react": "0.14.27",
"@assistant-ui/react-markdown": "0.14.6",
"@electron-toolkit/tsconfig": "^2.0.0",
"@eslint/js": "^9.39.1",
"@radix-ui/react-dialog": "^1.1.20",
"@radix-ui/react-popover": "^1.1.20",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-virtual": "^3.14.8",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"cmdk": "^1.1.1",
"electron": "^39.2.6",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"lucide-react": "^1.25.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.8.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-resizable-panels": "^4.12.2",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vite": "^7.2.6",
"vitest": "^4.1.10"
},
"build": {
"appId": "com.omp.desktop",
"productName": "OMP Desktop",
"asar": true,
"npmRebuild": false,
"artifactName": "omp-desktop-${version}-linux-x64.${ext}",
"directories": {
"output": "dist"
},
"files": [
"out/**/*",
"package.json",
"LICENSE",
"THIRD_PARTY_LICENSES.md"
],
"extraResources": [
{
"from": "runtime/omp",
"to": "runtime/omp"
}
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development",
"icon": "resources/icons/png",
"executableName": "omp-desktop",
"syncDesktopName": true,
"maintainer": "LetItBe12345 <guanghaojin56@gmail.com>",
"synopsis": "OMP 的轻量本地 Agent Desktop",
"desktop": {
"entry": {
"Name": "OMP Desktop",
"Comment": "OMP 的轻量本地 Agent Desktop",
"StartupWMClass": "OMP Desktop"
}
}
},
"deb": {
"packageName": "omp-desktop",
"priority": "optional"
}
}
}