tauri back on 2rc

This commit is contained in:
Nikita
2024-09-05 02:39:42 +03:00
parent 0439b69b8f
commit 092991243f
2 changed files with 33 additions and 33 deletions

BIN
bun.lockb

Binary file not shown.

View File

@@ -1,35 +1,35 @@
{ {
"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"
}, },
"workspaces": [ "workspaces": [
"web" "web"
], ],
"dependencies": { "dependencies": {
"@tauri-apps/cli": "^1.6.1", "@tauri-apps/cli": "^2.0.0-rc.11",
"@tauri-apps/plugin-deep-link": "^2.0.0-rc.1", "@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"
}, },
"devDependencies": { "devDependencies": {
"bun-types": "^1.1.26" "bun-types": "^1.1.26"
}, },
"prettier": { "prettier": {
"plugins": [ "plugins": [
"prettier-plugin-tailwindcss" "prettier-plugin-tailwindcss"
], ],
"useTabs": true, "useTabs": true,
"semi": false, "semi": false,
"trailingComma": "none", "trailingComma": "none",
"printWidth": 120, "printWidth": 120,
"arrowParens": "avoid" "arrowParens": "avoid"
}, },
"license": "MIT" "license": "MIT"
} }