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-17 00:00:50 +08:00
|
|
|
"type": "module",
|
2024-07-03 18:59:13 +08:00
|
|
|
"version": "v1.6.0",
|
2024-04-22 02:24:36 +08:00
|
|
|
"license": "Apache-2.0",
|
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
|
|
|
},
|
2024-04-22 02:24:36 +08:00
|
|
|
"repository": {
|
|
|
|
"url": "https://github.com/nongyehong/HuLa-IM-Tauri.git"
|
|
|
|
},
|
2024-01-25 23:42:35 +08:00
|
|
|
"author": {
|
|
|
|
"name": "nongyehong",
|
|
|
|
"email": "2439646234@qq.com",
|
2024-03-14 10:37:57 +08:00
|
|
|
"url": "https://github.com/nongyehong/HuLa-IM-Tauri"
|
2024-01-25 23:42:35 +08:00
|
|
|
},
|
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": {
|
2024-04-08 00:54:54 +08:00
|
|
|
"dev": "vite --mode dev",
|
|
|
|
"prod": "vite --mode prod",
|
2024-06-21 18:27:34 +08:00
|
|
|
"build": "vue-tsc --noEmit && vite build --mode pord",
|
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",
|
2024-04-08 00:54:54 +08:00
|
|
|
"tauri:icon": "tauri icon public/logo.png",
|
2023-12-17 02:21:55 +08:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2024-04-22 02:24:36 +08:00
|
|
|
"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": {
|
2024-07-03 18:59:13 +08:00
|
|
|
"@tauri-apps/api": "^1.6.0",
|
|
|
|
"axios": "^1.7.2",
|
2024-03-17 13:58:55 +08:00
|
|
|
"colorthief": "^2.4.0",
|
2024-07-03 18:59:13 +08:00
|
|
|
"dayjs": "^1.11.11",
|
2024-05-05 01:38:12 +08:00
|
|
|
"grapheme-splitter": "^1.0.4",
|
2023-12-15 20:25:35 +08:00
|
|
|
"lodash-es": "^4.17.21",
|
|
|
|
"mitt": "^3.0.1",
|
2024-05-05 01:38:12 +08:00
|
|
|
"naive-ui": "^2.38.2",
|
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-27 04:49:44 +08:00
|
|
|
"pinia-shared-state": "^0.5.1",
|
2024-06-30 23:51:30 +08:00
|
|
|
"vue": "^3.4.31",
|
2024-07-03 18:59:13 +08:00
|
|
|
"vue-draggable-plus": "^0.4.1",
|
|
|
|
"vue-router": "^4.4.0"
|
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",
|
2024-04-22 02:24:36 +08:00
|
|
|
"@commitlint/config-conventional": "^19.2.2",
|
2024-03-06 08:03:27 +08:00
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2024-06-21 18:27:34 +08:00
|
|
|
"@tauri-apps/cli": "1.5.14",
|
2024-01-15 06:14:04 +08:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-07-03 18:59:13 +08:00
|
|
|
"@types/node": "^20.14.9",
|
2024-03-08 02:31:17 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.1.0",
|
2024-07-03 18:59:13 +08:00
|
|
|
"@typescript-eslint/parser": "^7.15.0",
|
2024-06-21 18:27:34 +08:00
|
|
|
"@unocss/preset-uno": "^0.61.0",
|
|
|
|
"@unocss/reset": "^0.61.0",
|
|
|
|
"@unocss/transformer-directives": "^0.61.0",
|
|
|
|
"@unocss/transformer-variant-group": "^0.61.0",
|
|
|
|
"@unocss/vite": "^0.61.0",
|
2024-07-03 18:59:13 +08:00
|
|
|
"@vitejs/plugin-vue": "^5.0.5",
|
2024-06-21 18:27:34 +08:00
|
|
|
"@vitejs/plugin-vue-jsx": "^4.0.0",
|
2024-07-03 18:59:13 +08:00
|
|
|
"@vueuse/core": "^10.11.0",
|
2023-12-17 02:21:55 +08:00
|
|
|
"commitizen": "^4.3.0",
|
2024-06-21 18:27:34 +08:00
|
|
|
"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",
|
2023-12-17 02:21:55 +08:00
|
|
|
"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",
|
2024-04-22 02:24:36 +08:00
|
|
|
"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",
|
|
|
|
"sass-loader": "^14.2.1",
|
|
|
|
"typescript": "^5.5.3",
|
|
|
|
"unplugin-auto-import": "^0.17.6",
|
2023-12-16 03:56:10 +08:00
|
|
|
"unplugin-vue-components": "^0.26.0",
|
2024-06-30 23:51:30 +08:00
|
|
|
"vite": "5.3.2",
|
2024-07-03 18:59:13 +08:00
|
|
|
"vue-tsc": "^2.0.24"
|
2023-12-17 02:21:55 +08:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
2024-04-22 02:24:36 +08:00
|
|
|
"path": "node_modules/cz-git"
|
2023-12-17 02:21:55 +08:00
|
|
|
}
|
2023-12-15 20:25:35 +08:00
|
|
|
}
|
2024-03-12 01:11:35 +08:00
|
|
|
}
|