mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-11 20:00:23 +01:00
Merge branch 'main' into deep-link
This commit is contained in:
@@ -1,38 +1,42 @@
|
|||||||
{
|
{
|
||||||
"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": [
|
{
|
||||||
{
|
"title": "Learn Anything",
|
||||||
"title": "Learn Anything",
|
"width": 800,
|
||||||
"width": 800,
|
"height": 600,
|
||||||
"height": 600,
|
"resizable": true,
|
||||||
"resizable": true,
|
"fullscreen": false
|
||||||
"fullscreen": false,
|
}
|
||||||
"url": "http://localhost:3000"
|
],
|
||||||
}
|
"security": {
|
||||||
],
|
"csp": null
|
||||||
"security": {
|
}
|
||||||
"csp": null
|
},
|
||||||
}
|
"bundle": {
|
||||||
},
|
"active": true,
|
||||||
"bundle": {
|
"targets": "all",
|
||||||
"active": true,
|
"icon": [
|
||||||
"targets": "all",
|
"icons/32x32.png",
|
||||||
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"]
|
"icons/128x128.png",
|
||||||
},
|
"icons/128x128@2x.png",
|
||||||
"plugins": {
|
"icons/icon.icns",
|
||||||
"deep-link": {
|
"icons/icon.ico"
|
||||||
"desktop": {
|
]
|
||||||
"schemes": ["learn-anything"]
|
},
|
||||||
}
|
"plugins": {
|
||||||
}
|
"deep-link": {
|
||||||
}
|
"desktop": {
|
||||||
|
"schemes": ["learn-anything"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
67
package.json
67
package.json
@@ -1,35 +1,36 @@
|
|||||||
{
|
{
|
||||||
"name": "learn-anything",
|
"name": "learn-anything",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun web",
|
"dev": "bun web",
|
||||||
"web": "cd web && bun dev",
|
"web": "cd web && bun dev",
|
||||||
"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": [
|
},
|
||||||
"web"
|
"workspaces": [
|
||||||
],
|
"web"
|
||||||
"dependencies": {
|
],
|
||||||
"@tauri-apps/cli": "^2.0.0-rc.11",
|
"dependencies": {
|
||||||
"@tauri-apps/plugin-deep-link": "^2.0.0-rc.1",
|
"@tauri-apps/cli": "^2.0.0-rc.6",
|
||||||
"@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": {
|
},
|
||||||
"bun-types": "^1.1.26"
|
"devDependencies": {
|
||||||
},
|
"bun-types": "^1.1.26"
|
||||||
"prettier": {
|
},
|
||||||
"plugins": [
|
"prettier": {
|
||||||
"prettier-plugin-tailwindcss"
|
"plugins": [
|
||||||
],
|
"prettier-plugin-tailwindcss"
|
||||||
"useTabs": true,
|
],
|
||||||
"semi": false,
|
"useTabs": true,
|
||||||
"trailingComma": "none",
|
"semi": false,
|
||||||
"printWidth": 120,
|
"trailingComma": "none",
|
||||||
"arrowParens": "avoid"
|
"printWidth": 120,
|
||||||
},
|
"arrowParens": "avoid"
|
||||||
"license": "MIT"
|
},
|
||||||
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user