-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "ultraswarm",
"version": "0.1.0",
"description": "Universal macOS agent swarm launcher",
"main": "out/main/index.js",
"author": "ultraswarm",
"license": "MIT",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"package": "electron-vite build && electron-builder --mac --dir",
"dist": "electron-vite build && electron-builder --mac",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.5"
},
"build": {
"appId": "dev.ultraswarm.app",
"productName": "ultraswarm",
"directories": { "output": "release", "buildResources": "build" },
"files": ["out/**/*", "resources/**/*", "package.json"],
"extraResources": [
{ "from": "resources", "to": "resources" },
{ "from": "build/icon.png", "to": "build/icon.png" }
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.png",
"target": ["dmg"]
}
}
}