forge/package.json
Jacob Schmidt fe8f5dbef5 Refactor config loading and update SurrealDB setup documentation
- Refactored the `load` function in `config.rs` to use a new `locate_config_path` function for improved clarity and maintainability.
- Updated SurrealDB setup instructions in `SURREALDB_SETUP.md` and `surrealdb-setup.md` to reflect changes in the installation process and removed outdated script references.
- Added new dependencies for Tauri in `package.json` and `package-lock.json`, including `@tauri-apps/cli` and `@tauri-apps/plugin-dialog`.
- Updated the package-lock to include the latest versions of Tauri dependencies.
2026-06-06 15:34:17 -05:00

26 lines
725 B
JSON

{
"name": "forge-webui",
"private": true,
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.29.3",
"postcss": "^8.5.6",
"postcss-nested": "^7.0.2",
"prettier": "^3.6.2",
"terser": "^5.44.0"
},
"scripts": {
"build:webui": "node tools/build-webui.mjs",
"docs:sync": "node tools/sync-docus-docs.mjs",
"docs:dev": "npm --prefix docus run dev",
"docs:build": "npm --prefix docus run build",
"host:dev": "cd bin/host/src-tauri && tauri dev",
"host:build": "cd bin/host/src-tauri && tauri build",
"workflow": "node tools/git-workflow.mjs"
},
"dependencies": {
"@tauri-apps/plugin-dialog": "^2.7.1"
}
}