mirror of
https://gitee.com/HuLaSpark/HuLa.git
synced 2024-11-29 18:28:30 +08:00
91 lines
2.6 KiB
JSON
91 lines
2.6 KiB
JSON
{
|
|
"name": "hula-im-tauri",
|
|
"private": true,
|
|
"version": "v1.0.0-alpha",
|
|
"packageManager": "pnpm@8.14.1",
|
|
"engines": {
|
|
"node": ">=18.12.0",
|
|
"pnpm": ">=8.10.0"
|
|
},
|
|
"type": "module",
|
|
"author": {
|
|
"name": "nongyehong",
|
|
"email": "2439646234@qq.com",
|
|
"url": "https://xxxx/xxx"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,vue,ts,tsx}": [
|
|
"oxlint src",
|
|
"prettier --config .prettierrc --write",
|
|
"eslint src"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"tauri:icon": "tauri icon logo.png",
|
|
"preinstall": "npx only-allow pnpm",
|
|
"commit": "git add . && lint-staged && git-cz && conventional-changelog -p cz-config.js -i CHANGELOG.md -s -r 0",
|
|
"changelog": "conventional-changelog -p cz-config.js -i CHANGELOG.md -s -r 0",
|
|
"lint:staged": "lint-staged"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^1.5.3",
|
|
"axios": "^1.6.7",
|
|
"dayjs": "^1.11.10",
|
|
"lodash-es": "^4.17.21",
|
|
"mitt": "^3.0.1",
|
|
"naive-ui": "^2.37.3",
|
|
"pinia": "^2.1.7",
|
|
"pinia-plugin-persistedstate": "^3.2.1",
|
|
"vue": "^3.4.18",
|
|
"vue-draggable-plus": "^0.3.5",
|
|
"vue-router": "^4.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.23.3",
|
|
"@tauri-apps/cli": "^1.5.7",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^20.10.4",
|
|
"@typescript-eslint/eslint-plugin": "6.13.1",
|
|
"@typescript-eslint/parser": "^6.13.1",
|
|
"@unocss/preset-uno": "^0.58.4",
|
|
"@unocss/reset": "^0.58.4",
|
|
"@unocss/transformer-directives": "^0.58.4",
|
|
"@unocss/vite": "^0.58.4",
|
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
"commitizen": "^4.3.0",
|
|
"conventional-changelog": "^5.1.0",
|
|
"conventional-changelog-cli": "^4.1.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"cz-customizable": "^7.0.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"eslint-plugin-vue": "^9.19.2",
|
|
"lint-staged": "^15.2.0",
|
|
"only-allow": "^1.2.1",
|
|
"oxlint": "^0.2.4",
|
|
"prettier": "^3.1.1",
|
|
"sass": "^1.70.0",
|
|
"sass-loader": "^14.0.0",
|
|
"typescript": "^5.3.3",
|
|
"unplugin-auto-import": "^0.17.2",
|
|
"unplugin-vue-components": "^0.26.0",
|
|
"vite": "5.1.1",
|
|
"vue-tsc": "^1.8.27"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-customizable"
|
|
},
|
|
"cz-customizable": {
|
|
"config": "config/cz-config.cjs"
|
|
}
|
|
}
|
|
} |