[Refactor] tauri.conf.json: Align indentation to 4 spaces.

This commit is contained in:
Sakamoto Shiina
2025-03-19 14:15:42 +09:00
parent 4003687e73
commit f3d2de54b5

View File

@@ -1,89 +1,83 @@
{ {
"build": { "build": {
"beforeDevCommand": "", "beforeDevCommand": "",
"beforeBuildCommand": "", "beforeBuildCommand": "",
"devPath": "http://localhost:1420", "devPath": "http://localhost:1420",
"distDir": "../dist" "distDir": "../dist"
},
"package": {
"productName": "VRCT",
"version": "3.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"window": {
"all": false,
"setAlwaysOnTop": true,
"setFocus": true,
"setDecorations": true,
"close": true,
"hide": true,
"setPosition": true,
"setSize": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true
},
"globalShortcut": {
"all": true
},
"shell": {
"all": false,
"open": true,
"sidecar": true,
"scope": [
{
"name": "bin/VRCT-sidecar", "sidecar": true,"args": true
}
]
}
},
"windows": [
{
"title": "VRCT",
"center": true,
"width": 450,
"height": 220,
"minWidth": 400,
"minHeight": 200,
"transparent": true,
"decorations": false
}
],
"security": {
"csp": null
}, },
"bundle": { "package": {
"active": true, "productName": "VRCT",
"targets": "nsis", "version": "3.0.0"
"identifier": "com.vrct.dev", },
"publisher": "m's software", "tauri": {
"copyright": "Copyright m's software", "allowlist": {
"shortDescription": "VRCT", "all": false,
"icon": [ "window": {
"icons/32x32.png", "all": false,
"icons/128x128.png", "setAlwaysOnTop": true,
"icons/128x128@2x.png", "setFocus": true,
"icons/icon.icns", "setDecorations": true,
"icons/icon.ico" "close": true,
], "hide": true,
"externalBin": [ "setPosition": true,
"bin/VRCT-sidecar" "setSize": true,
], "maximize": true,
"resources":{ "minimize": true,
"bin/_internal": "_internal" "unmaximize": true,
}, "unminimize": true,
"windows": { "startDragging": true
"nsis": { },
"template": "nsis/template.nsi", "globalShortcut": {
"license": "../LICENSE", "all": true
"installMode": "currentUser", },
"displayLanguageSelector": true "shell": {
"all": false,
"open": true,
"sidecar": true,
"scope": [
{ "name": "bin/VRCT-sidecar", "sidecar": true, "args": true }
]
}
},
"windows": [{
"title": "VRCT",
"center": true,
"width": 450,
"height": 220,
"minWidth": 400,
"minHeight": 200,
"transparent": true,
"decorations": false
}],
"security": { "csp": null },
"bundle": {
"active": true,
"targets": "nsis",
"identifier": "com.vrct.dev",
"publisher": "m's software",
"copyright": "Copyright m's software",
"shortDescription": "VRCT",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"bin/VRCT-sidecar"
],
"resources": {
"bin/_internal": "_internal"
},
"windows": {
"nsis": {
"template": "nsis/template.nsi",
"license": "../LICENSE",
"installMode": "currentUser",
"displayLanguageSelector": true
}
}
} }
}
} }
}
} }