forked from dockur/macos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"name": "macboat",
"productName": "MacBoat",
"version": "1.0.1",
"description": "MacBoat - macOS inside a Docker container with ease.",
"author": "Inled Group <hi@inled.es>",
"main": "dist/backend/electron/main.js",
"type": "module",
"scripts": {
"dev:frontend": "astro dev",
"dev:electron": "NODE_ENV=development npx electron .",
"dev": "npm run build:electron && (npm run dev:frontend & sleep 5 && npm run dev:electron)",
"build:frontend": "astro build",
"build:electron": "tsc -p tsconfig.json",
"build": "npm run build:frontend && npm run build:electron && electron-builder",
"package:linux": "npm run build:frontend && npm run build:electron && electron-builder --linux"
},
"build": {
"appId": "com.macboat.app",
"productName": "MacBoat",
"directories": {
"output": "dist-package"
},
"icon": "build/icon.png",
"files": [
"dist/**/*",
"package.json",
"assets/**/*"
],
"linux": {
"maintainer": "Inled Group <hi@inled.es>",
"target": [
"AppImage",
"deb",
"rpm"
],
"executableName": "macboat",
"category": "Utility"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/InledGroup/macboat.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/InledGroup/macboat/issues"
},
"homepage": "https://github.com/InledGroup/macboat#readme",
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/electron": "^1.4.38",
"@types/node": "^25.9.0",
"@types/yaml": "^1.9.6",
"@vitest/ui": "^4.1.6",
"astro": "^6.3.5",
"electron": "^42.1.0",
"electron-builder": "^26.8.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"dependencies": {
"@astrojs/preact": "^5.1.3",
"@nanostores/preact": "^1.1.0",
"nanostores": "^1.3.0",
"preact": "^10.29.2",
"usb": "^2.17.0",
"yaml": "^2.9.0"
}
}