Move project files from uzdb/ subdirectory to root directory for cleaner project structure.
Changes:
- Move frontend/ to root
- Move internal/ to root
- Move build/ to root
- Move all config files (go.mod, wails.json, etc.) to root
- Remove redundant uzdb/ subdirectory nesting
Project structure is now:
├── frontend/ # React application
├── internal/ # Go backend
├── build/ # Wails build assets
├── doc/ # Design documentation
├── main.go # Entry point
└── ...
🤖 Generated with Qoder
25 lines
538 B
JSON
25 lines
538 B
JSON
{
|
|
"name": "@wailsapp/runtime",
|
|
"version": "2.0.0",
|
|
"description": "Wails Javascript runtime library",
|
|
"main": "runtime.js",
|
|
"types": "runtime.d.ts",
|
|
"scripts": {
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/wailsapp/wails.git"
|
|
},
|
|
"keywords": [
|
|
"Wails",
|
|
"Javascript",
|
|
"Go"
|
|
],
|
|
"author": "Lea Anthony <lea.anthony@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/wailsapp/wails/issues"
|
|
},
|
|
"homepage": "https://github.com/wailsapp/wails#readme"
|
|
}
|