HuLa/package.json

94 lines
2.7 KiB
JSON
Raw Normal View History

2023-12-15 20:25:35 +08:00
{
"name": "hula-im-tauri",
2023-12-15 20:25:35 +08:00
"private": true,
"version": "v1.3.0-beta",
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.10.0"
},
2023-12-15 20:25:35 +08:00
"type": "module",
"author": {
"name": "nongyehong",
"email": "2439646234@qq.com",
"url": "https://github.com/nongyehong/HuLa-IM-Tauri"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"oxlint src",
"prettier --config .prettierrc --write",
"eslint src"
]
},
2023-12-15 20:25:35 +08:00
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
2023-12-16 03:56:10 +08:00
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:icon": "tauri icon public/logo.png",
"preinstall": "npx only-allow pnpm",
"commit": "git add . && lint-staged && git-cz && conventional-changelog -p cz-config.cjs -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -p cz-config.cjs -i CHANGELOG.md -s -r 0",
"lint:staged": "lint-staged"
2023-12-15 20:25:35 +08:00
},
"dependencies": {
"@tauri-apps/api": "^1.5.3",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
2023-12-15 20:25:35 +08:00
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"naive-ui": "^2.38.1",
2023-12-15 20:25:35 +08:00
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"vue": "^3.4.21",
"vue-draggable-plus": "^0.3.5",
"vue-router": "^4.3.0"
2023-12-15 20:25:35 +08:00
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@rollup/plugin-terser": "^0.4.4",
"@tauri-apps/cli": "^1.5.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@unocss/preset-uno": "^0.58.5",
"@unocss/reset": "^0.58.5",
"@unocss/transformer-directives": "^0.58.5",
"@unocss/vite": "^0.58.5",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vueuse/core": "^10.8.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.2.5",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"typescript": "^5.4.2",
2023-12-16 03:56:10 +08:00
"unplugin-auto-import": "^0.17.2",
"unplugin-vue-components": "^0.26.0",
"vite": "5.1.4",
"vue-tsc": "^2.0.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/cz-config.cjs"
}
2023-12-15 20:25:35 +08:00
}
}