Files
OpenList-Desktop/package.json
2025-06-26 15:09:20 +08:00

85 lines
2.3 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",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"nowatch": "tauri dev --no-watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"cz": "git-cz",
"release": "bump-version",
"prepare-dev": "node scripts/prepare.js"
},
"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",
"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",
"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"
}
}