Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ capacitor.config.json

# Ignore Gradle build output directory
build

# Ignore Tauri build artifacts
src-tauri/target/
src-tauri/gen/
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"android:release": "vite build && node capacitor.config.generator.mjs && npx cap build android --release",
"format": "prettier --write {src,test}/**/*.{js,vue,css,less}",
"storybook": "start-storybook -p 6006",
"prepare": "husky install"
"prepare": "husky install",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"window": {
"icon": "images/bf_icon_128.png",
Expand All @@ -44,6 +46,8 @@
"@capacitor/android": "^7.0.1",
"@capacitor/core": "^7.0.1",
"@fortawesome/fontawesome-free": "^6.5.2",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/cli": "^2.8.0",
"@vitejs/plugin-vue": "^5.2.1",
"crypto-es": "^2.1.0",
"d3": "^7.9.0",
Expand Down
Loading