2023-12-15 20:25:35 +08:00
|
|
|
{
|
2024-01-10 02:18:32 +08:00
|
|
|
"name": "hula-im-tauri",
|
2023-12-15 20:25:35 +08:00
|
|
|
"private": true,
|
2024-03-12 01:54:29 +08:00
|
|
|
"version": "v1.3.0-beta",
|
2024-03-08 02:31:17 +08:00
|
|
|
"packageManager": "pnpm@8.15.4",
|
2024-01-25 23:42:35 +08:00
|
|
|
"engines": {
|
2024-01-28 05:04:03 +08:00
|
|
|
"node": ">=18.12.0",
|
|
|
|
"pnpm": ">=8.10.0"
|
2024-01-25 23:42:35 +08:00
|
|
|
},
|
2023-12-15 20:25:35 +08:00
|
|
|
"type": "module",
|
2024-01-25 23:42:35 +08:00
|
|
|
"author": {
|
|
|
|
"name": "nongyehong",
|
|
|
|
"email": "2439646234@qq.com",
|
|
|
|
"url": "https://xxxx/xxx"
|
|
|
|
},
|
2023-12-17 02:21:55 +08:00
|
|
|
"lint-staged": {
|
2024-01-28 06:05:51 +08:00
|
|
|
"*.{js,jsx,vue,ts,tsx}": [
|
2024-01-28 06:09:29 +08:00
|
|
|
"oxlint src",
|
2023-12-17 02:21:55 +08:00
|
|
|
"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",
|
2023-12-17 02:21:55 +08:00
|
|
|
"tauri:build": "tauri build",
|
2024-01-15 06:14:04 +08:00
|
|
|
"tauri:icon": "tauri icon logo.png",
|
2023-12-17 02:21:55 +08:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2024-03-12 01:11:35 +08:00
|
|
|
"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",
|
2023-12-17 02:21:55 +08:00
|
|
|
"lint:staged": "lint-staged"
|
2023-12-15 20:25:35 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-25 23:42:35 +08:00
|
|
|
"@tauri-apps/api": "^1.5.3",
|
2024-01-28 22:10:03 +08:00
|
|
|
"axios": "^1.6.7",
|
2024-01-15 06:14:04 +08:00
|
|
|
"dayjs": "^1.11.10",
|
2023-12-15 20:25:35 +08:00
|
|
|
"lodash-es": "^4.17.21",
|
|
|
|
"mitt": "^3.0.1",
|
2024-03-04 05:48:50 +08:00
|
|
|
"naive-ui": "^2.38.1",
|
2023-12-15 20:25:35 +08:00
|
|
|
"pinia": "^2.1.7",
|
2024-01-25 23:42:35 +08:00
|
|
|
"pinia-plugin-persistedstate": "^3.2.1",
|
2024-03-09 03:39:35 +08:00
|
|
|
"vue": "^3.4.21",
|
2024-02-20 03:31:20 +08:00
|
|
|
"vue-draggable-plus": "^0.3.5",
|
2024-03-08 02:31:17 +08:00
|
|
|
"vue-router": "^4.3.0"
|
2023-12-15 20:25:35 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-17 02:21:55 +08:00
|
|
|
"@babel/eslint-parser": "^7.23.3",
|
2024-03-06 08:03:27 +08:00
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2024-03-10 11:54:46 +08:00
|
|
|
"@tauri-apps/cli": "^1.5.11",
|
2024-01-15 06:14:04 +08:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-01-10 02:18:32 +08:00
|
|
|
"@types/node": "^20.10.4",
|
2024-03-08 02:31:17 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.1.0",
|
|
|
|
"@typescript-eslint/parser": "^7.1.0",
|
2024-03-10 11:54:46 +08:00
|
|
|
"@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",
|
2023-12-17 02:21:55 +08:00
|
|
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
2024-03-03 00:05:05 +08:00
|
|
|
"@vueuse/core": "^10.8.0",
|
2023-12-17 02:21:55 +08:00
|
|
|
"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",
|
2024-01-28 05:04:03 +08:00
|
|
|
"oxlint": "^0.2.4",
|
2024-03-08 02:31:17 +08:00
|
|
|
"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",
|
2024-03-03 00:05:05 +08:00
|
|
|
"vite": "5.1.4",
|
2024-03-08 02:31:17 +08:00
|
|
|
"vue-tsc": "^2.0.6"
|
2023-12-17 02:21:55 +08:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-customizable"
|
|
|
|
},
|
|
|
|
"cz-customizable": {
|
2024-01-05 21:02:11 +08:00
|
|
|
"config": "config/cz-config.cjs"
|
2023-12-17 02:21:55 +08:00
|
|
|
}
|
2023-12-15 20:25:35 +08:00
|
|
|
}
|
2024-03-12 01:11:35 +08:00
|
|
|
}
|