Initial migration to Tauri 2.0

- Updated package.json with project metadata and moves dependencies to devDependencies.
- Adds .editorconfig for consistent code style
- Updated VSCode and .NET project settings for improved development workflow.
This commit is contained in:
Tony Bark 2026-01-07 05:18:57 -05:00
parent 81799106f8
commit 2cd45c4a6c
13 changed files with 1243 additions and 664 deletions

View file

@ -1,6 +1,13 @@
{
"dependencies": {
"@tauri-apps/cli": "^2.1.0",
"@tauri-apps/plugin-shell": "~2"
}
}
"name": "amtkstat",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"tauri": "tauri"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@tauri-apps/plugin-shell": "~2"
}
}