mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 00:55:25 +00:00
* refactor: app event bus * fix: use messagepack + cleanup * fix: use postcard * fix: lint * fix: import gate * fix: prettierignore + lint * fix: lint * fix: rev
22 lines
734 B
JSON
22 lines
734 B
JSON
{
|
|
"name": "@modrinth/app",
|
|
"scripts": {
|
|
"tauri": "tauri",
|
|
"build": "tauri build",
|
|
"dev": "tauri dev --features export-app-events",
|
|
"test": "cargo nextest run --all-targets --no-fail-fast",
|
|
"lint": "cargo fmt --check && cargo clippy --all-targets && cargo clippy --all-targets --features updater",
|
|
"lint:ancillary": "prettier --check .",
|
|
"fix": "cargo clippy --all-targets --fix --allow-dirty && cargo clippy --all-targets --features updater --fix --allow-dirty && cargo fmt",
|
|
"fix:ancillary": "prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "2.5.0"
|
|
},
|
|
"dependencies": {
|
|
"@modrinth/app-frontend": "workspace:*",
|
|
"@modrinth/app-lib": "workspace:*",
|
|
"@modrinth/daedalus": "workspace:*"
|
|
}
|
|
}
|