mirror of
https://github.com/OpenListTeam/OpenList-Desktop.git
synced 2025-11-25 03:14:56 +08:00
* feat: add save_settings_with_update_port command and update related components * refactor: remove state parameter from API key retrieval and update related functions * feat: enhance release workflow with tag validation and improve build scripts * feat: update release workflow to use version input from auto-version workflow * 📦 Chore(custom): add Clippy configuration for consistent linting across platforms * chore: add Clippy configuration for consistent linting across platforms * 🐛 Fix(custom): fix ci * 🚧 WIP(custom): fix clippy error * 🐛 Fix(custom): add default openlist and rclone version * 🚧 WIP(custom): fix clippy errors * 🚧 WIP(custom): fix clippy errors * 🐛 Fix(custom): fix ci bugs
99 lines
3.1 KiB
JSON
99 lines
3.1 KiB
JSON
{
|
|
"name": "openlist-desktop",
|
|
"description": "A desktop application for OpenList",
|
|
"keywords": [
|
|
"openlist",
|
|
"desktop",
|
|
"application",
|
|
"vue",
|
|
"tauri"
|
|
],
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"author": {
|
|
"name": "OpenList Team",
|
|
"email": "96409857+Kuingsmile@users.noreply.github.com"
|
|
},
|
|
"type": "module",
|
|
"license": "GPL-3.0",
|
|
"homepage": "https://github.com/OpenListTeam/openlist-desktop",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"web:build": "tsc --noEmit && vite build",
|
|
"web:preview": "vite preview",
|
|
"build": "cross-env NODE_OPTIONS='--max-old-space-size=4096' tauri build",
|
|
"tauri:dev": "cross-env RUST_BACKTRACE=1 tauri dev",
|
|
"tauri": "tauri",
|
|
"nowatch": "tauri dev --no-watch",
|
|
"lint": "eslint src/**/*.ts",
|
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
"cz": "git-cz",
|
|
"release": "bump-version",
|
|
"prebuild:dev": "node scripts/prepare.js",
|
|
"check:rust": "cd src-tauri && cargo check --all-targets --all-features",
|
|
"check:rust:fmt": "cd src-tauri && cargo fmt --all -- --check",
|
|
"check:rust:clippy": "cd src-tauri && cargo clippy --all-targets --all-features -- -D warnings",
|
|
"check:rust:all": "yarn check:rust:fmt && yarn check:rust:clippy && yarn check:rust",
|
|
"check:frontend": "yarn lint && tsc --noEmit",
|
|
"check:all": "yarn check:frontend && yarn check:rust:all",
|
|
"fix:rust": "cd src-tauri && cargo fmt --all && cargo clippy --all-targets --all-features --fix --allow-dirty",
|
|
"fix:frontend": "yarn lint:fix",
|
|
"fix:all": "yarn fix:frontend && yarn fix:rust"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-customizable"
|
|
},
|
|
"cz-customizable": {
|
|
"config": "./node_modules/node-bump-version/.cz-config.cjs"
|
|
}
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"./node_modules/node-bump-version/dist/commitlint-node/index.js"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/vue": "^1.7.23",
|
|
"@tauri-apps/api": "^2.6.0",
|
|
"@tauri-apps/plugin-autostart": "^2.5.0",
|
|
"@tauri-apps/plugin-dialog": "^2.3.0",
|
|
"@tauri-apps/plugin-fs": "^2.4.0",
|
|
"@tauri-apps/plugin-opener": "^2.4.0",
|
|
"@tauri-apps/plugin-process": "^2.3.0",
|
|
"@tauri-apps/plugin-shell": "^2.3.0",
|
|
"@tauri-apps/plugin-store": "^2.3.0",
|
|
"@vueuse/core": "^13.4.0",
|
|
"chrono-node": "^2.8.3",
|
|
"dexie": "^4.0.11",
|
|
"lucide-vue-next": "^0.523.0",
|
|
"pinia": "^3.0.3",
|
|
"vue": "^3.5.17",
|
|
"vue-i18n": "11.1.7",
|
|
"vue-router": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.6.0",
|
|
"@types/node": "^22.9.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.35.0",
|
|
"@typescript-eslint/parser": "^8.35.0",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"adm-zip": "^0.5.16",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^9.29.0",
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
"fs-extra": "^11.3.0",
|
|
"https-proxy-agent": "^7.0.6",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.1.2",
|
|
"node-bump-version": "^2.0.0",
|
|
"node-fetch": "^3.3.2",
|
|
"tar": "^7.4.3",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.35.0",
|
|
"vite": "^7.0.0",
|
|
"vue-tsc": "^2.2.10"
|
|
}
|
|
}
|