mirror of
https://github.com/Vomitblood/stort.git
synced 2024-11-26 13:55:27 +08:00
116 lines
2.6 KiB
JSON
116 lines
2.6 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"build": {
|
|
"beforeBuildCommand": "bun run build",
|
|
"beforeDevCommand": "bun run dev",
|
|
"devPath": "http://localhost:3000",
|
|
"distDir": "../out"
|
|
},
|
|
"package": {
|
|
"productName": "stort",
|
|
"version": "0.1.0"
|
|
},
|
|
"tauri": {
|
|
"allowlist": {
|
|
"dialog": {
|
|
"all": true,
|
|
"ask": true,
|
|
"confirm": true,
|
|
"message": true,
|
|
"open": true,
|
|
"save": true
|
|
},
|
|
"notification": {
|
|
"all": true
|
|
},
|
|
"process": {
|
|
"all": true
|
|
},
|
|
"window": {
|
|
"all": true,
|
|
"create": true,
|
|
"center": true,
|
|
"requestUserAttention": true,
|
|
"setResizable": true,
|
|
"setMaximizable": true,
|
|
"setMinimizable": true,
|
|
"setClosable": true,
|
|
"setTitle": true,
|
|
"maximize": true,
|
|
"unmaximize": true,
|
|
"minimize": true,
|
|
"unminimize": true,
|
|
"show": true,
|
|
"hide": true,
|
|
"close": true,
|
|
"setDecorations": true,
|
|
"setAlwaysOnTop": true,
|
|
"setContentProtected": true,
|
|
"setSize": true,
|
|
"setMinSize": true,
|
|
"setMaxSize": true,
|
|
"setPosition": true,
|
|
"setFullscreen": true,
|
|
"setFocus": true,
|
|
"setIcon": true,
|
|
"setSkipTaskbar": true,
|
|
"setCursorGrab": true,
|
|
"setCursorVisible": true,
|
|
"setCursorIcon": true,
|
|
"setCursorPosition": true,
|
|
"setIgnoreCursorEvents": true,
|
|
"startDragging": true,
|
|
"print": true
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"category": "DeveloperTool",
|
|
"copyright": "",
|
|
"deb": {
|
|
"depends": []
|
|
},
|
|
"externalBin": [],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"identifier": "com.vomitblood.stort",
|
|
"longDescription": "",
|
|
"macOS": {
|
|
"entitlements": null,
|
|
"exceptionDomain": "",
|
|
"frameworks": [],
|
|
"providerShortName": null,
|
|
"signingIdentity": null
|
|
},
|
|
"resources": [],
|
|
"shortDescription": "",
|
|
"targets": "all",
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
}
|
|
},
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"updater": {
|
|
"active": false
|
|
},
|
|
"windows": [
|
|
{
|
|
"decorations": false,
|
|
"fullscreen": false,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"title": "Stort",
|
|
"width": 800
|
|
}
|
|
]
|
|
}
|
|
} |