mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-05 18:01:56 +02:00
88 lines
1.9 KiB
JSON
88 lines
1.9 KiB
JSON
{
|
|
"package": {
|
|
"productName": "slimevr",
|
|
"version": "../package.json"
|
|
},
|
|
"build": {
|
|
"distDir": "../dist",
|
|
"devPath": "http://localhost:5173",
|
|
"beforeDevCommand": "pnpm run start",
|
|
"beforeBuildCommand": "pnpm run build"
|
|
},
|
|
"plugins": {
|
|
"shell": {
|
|
"open": true
|
|
},
|
|
"fs": {
|
|
"scope": ["$APP/*", "$APP"],
|
|
"all": true
|
|
},
|
|
"os": {
|
|
"all": true
|
|
},
|
|
"window": {
|
|
"setResizable": true,
|
|
"setTitle": true,
|
|
"maximize": true,
|
|
"unmaximize": true,
|
|
"minimize": true,
|
|
"unminimize": true,
|
|
"close": true,
|
|
"startDragging": true,
|
|
"setSize": true
|
|
}
|
|
},
|
|
"tauri": {
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"identifier": "dev.slimevr.SlimeVR",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [],
|
|
"externalBin": [],
|
|
"copyright": "",
|
|
"category": "DeveloperTool",
|
|
"shortDescription": "",
|
|
"longDescription": "",
|
|
"deb": {
|
|
"depends": ["openjdk-17-jre-headless"],
|
|
"files": {
|
|
"/usr/share/slimevr/slimevr.jar": "../../server/desktop/build/libs/slimevr.jar"
|
|
}
|
|
},
|
|
"appimage": {
|
|
"bundleMediaFramework": true
|
|
},
|
|
"macOS": {
|
|
"frameworks": [],
|
|
"exceptionDomain": "localhost",
|
|
"signingIdentity": null,
|
|
"providerShortName": null,
|
|
"entitlements": null,
|
|
"license": "../../LICENSE-MIT"
|
|
},
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
}
|
|
},
|
|
"security": {
|
|
"csp": null,
|
|
"dangerousRemoteDomainIpcAccess": [
|
|
{
|
|
"domain": "tauri.localhost",
|
|
"windows": ["main"],
|
|
"plugins": ["dialog", "fs", "os", "shell", "window"]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|