HuLa/package.json

105 lines
3.0 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,
"type": "module",
"version": "2.1.0",
"license": "Apache-2.0",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.10.0"
},
"repository": {
"url": "https://github.com/nongyehong/HuLa-IM-Tauri.git"
},
"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",
2023-12-15 20:25:35 +08:00
"preview": "vite preview",
2023-12-16 03:56:10 +08:00
"tauri:dev": "tauri dev",
2024-04-10 17:42:47 +08:00
"tauri:build": "tauri build",
"tauri:build->debug": "tauri build --debug",
"tauri:icon": "tauri icon hula.png",
"preinstall": "npx only-allow pnpm",
"commit": "git add . && git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint:staged": "lint-staged",
"prepare": "husky install"
2023-12-15 20:25:35 +08:00
},
"dependencies": {
"@tauri-apps/api": "2.0.0-rc.0",
"@tauri-apps/plugin-clipboard-manager": "2.0.0-rc.0",
"@tauri-apps/plugin-http": "2.0.0-rc.1",
"@tauri-apps/plugin-os": "2.0.0-rc.0",
"@tauri-apps/plugin-process": "2.0.0-rc.0",
"axios": "^1.7.3",
"colorthief": "^2.4.0",
2024-07-03 18:59:13 +08:00
"dayjs": "^1.11.11",
"grapheme-splitter": "^1.0.4",
2023-12-15 20:25:35 +08:00
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"naive-ui": "^2.39.0",
"pinia": "^2.2.1",
"pinia-plugin-persistedstate": "^3.2.1",
"pinia-shared-state": "^0.5.1",
"vue": "^3.5.4",
"vue-draggable-plus": "^0.5.3",
"vue-router": "^4.4.2"
2023-12-15 20:25:35 +08:00
},
"devDependencies": {
2024-07-03 18:59:13 +08:00
"@babel/eslint-parser": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-terser": "^0.4.4",
"@tauri-apps/cli": "2.0.0-rc.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.14",
"@typescript-eslint/eslint-plugin": "7.1.0",
2024-07-03 18:59:13 +08:00
"@typescript-eslint/parser": "^7.15.0",
"@unocss/preset-uno": "^0.62.3",
"@unocss/reset": "^0.62.3",
"@unocss/transformer-directives": "^0.62.3",
"@unocss/transformer-variant-group": "^0.62.3",
"@unocss/vite": "^0.62.3",
"@vitejs/plugin-vue": "^5.1.2",
"@vitejs/plugin-vue-jsx": "^4.0.0",
2024-07-03 18:59:13 +08:00
"@vueuse/core": "^10.11.0",
"commitizen": "^4.3.0",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
2024-07-03 18:59:13 +08:00
"cz-git": "^1.9.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
2024-07-03 18:59:13 +08:00
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.27.0",
"husky": "^9.0.11",
2024-07-03 18:59:13 +08:00
"lint-staged": "^15.2.7",
"oxlint": "^0.2.18",
"prettier": "^3.3.2",
"sass": "1.77.6",
2024-07-03 18:59:13 +08:00
"sass-loader": "^14.2.1",
"typescript": "^5.6.2",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.4",
"vite": "5.4.3",
"vue-tsc": "^2.1.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
2023-12-15 20:25:35 +08:00
}
}