Vue init (#47)

This commit is contained in:
Geometrically
2023-02-27 09:11:34 -07:00
committed by GitHub
parent e591b7120a
commit c204caa350
58 changed files with 727 additions and 6666 deletions

View File

@@ -1,23 +1,31 @@
{
"package": {
"productName": "Modrinth"
},
"build": {
"distDir": "../build",
"devPath": "http://localhost:5173",
"beforeDevCommand": "pnpm dev:web",
"beforeBuildCommand": "pnpm run build:web"
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "theseus_gui",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"targets": [
"dmg",
"deb",
"appimage",
"msi"
],
"identifier": "com.modrinth.theseus",
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
@@ -25,37 +33,38 @@
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [],
"externalBin": [],
"copyright": "",
"category": "Game",
"shortDescription": "",
"identifier": "com.tauri.dev",
"longDescription": "",
"deb": {
"depends": []
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"entitlements": null,
"exceptionDomain": "",
"signingIdentity": null,
"frameworks": [],
"providerShortName": null,
"entitlements": null
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"allowlist": {
"all": true
},
"security": {
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
}
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "theseus_gui",
"width": 800
}
]
}
}