This commit is contained in:
Nikita
2024-08-27 16:19:24 +03:00
parent 31b6cc4b7f
commit 139aa744b9
9 changed files with 5416 additions and 76 deletions

View File

@@ -1,34 +1,62 @@
{
"productName": "learn-anything",
"version": "0.1.0",
"identifier": "xyz.learn-anything",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "learn-anything",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
"$schema": "..\\node_modules/@tauri-apps/cli\\schema.json",
"build": {
"beforeBuildCommand": "npm run next-build",
"beforeDevCommand": "npm run next dev",
"devPath": "http://localhost:3000",
"distDir": "../dist"
},
"package": {
"productName": "learn-anything-app",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": 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.das.dev",
"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": [
{
"transparent": false,
"decorations": true,
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Learn Anything",
"width": 800
}
]
}
}