Merge branch 'main' into deep-link

This commit is contained in:
Nikita
2024-09-05 12:57:17 +03:00
2 changed files with 74 additions and 69 deletions

View File

@@ -1,12 +1,11 @@
{ {
"productName": "learn-anything", "productName": "Learn Anything",
"version": "0.1.0", "version": "0.1.0",
"identifier": "xyz.learn-anything", "identifier": "xyz.learnanything.desktop",
"build": { "build": {
"frontendDist": "../out", "frontendDist": "https://dev.learn-anything.xyz",
"devUrl": "http://localhost:3000", "devUrl": "http://localhost:3000",
"beforeDevCommand": "bun dev", "beforeDevCommand": "bun dev"
"beforeBuildCommand": "bun web:build"
}, },
"app": { "app": {
"windows": [ "windows": [
@@ -15,8 +14,7 @@
"width": 800, "width": 800,
"height": 600, "height": 600,
"resizable": true, "resizable": true,
"fullscreen": false, "fullscreen": false
"url": "http://localhost:3000"
} }
], ],
"security": { "security": {
@@ -26,7 +24,13 @@
"bundle": { "bundle": {
"active": true, "active": true,
"targets": "all", "targets": "all",
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"] "icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}, },
"plugins": { "plugins": {
"deep-link": { "deep-link": {

View File

@@ -6,17 +6,18 @@
"web:build": "bun run --filter '*' build", "web:build": "bun run --filter '*' build",
"cli": "bun run --watch cli/run.ts", "cli": "bun run --watch cli/run.ts",
"seed": "bun --watch cli/seed.ts", "seed": "bun --watch cli/seed.ts",
"tauri": "tauri" "tauri": "tauri",
"app:build": "bun tauri build -b dmg -v"
}, },
"workspaces": [ "workspaces": [
"web" "web"
], ],
"dependencies": { "dependencies": {
"@tauri-apps/cli": "^2.0.0-rc.11", "@tauri-apps/cli": "^2.0.0-rc.6",
"@tauri-apps/plugin-deep-link": "^2.0.0-rc.1",
"@tauri-apps/plugin-fs": "^2.0.0-rc.2", "@tauri-apps/plugin-fs": "^2.0.0-rc.2",
"jazz-nodejs": "^0.7.34", "jazz-nodejs": "^0.7.34",
"react-icons": "^5.3.0" "react-icons": "^5.3.0",
"@tauri-apps/plugin-deep-link": "^2.0.0-rc.1"
}, },
"devDependencies": { "devDependencies": {
"bun-types": "^1.1.26" "bun-types": "^1.1.26"