2023-12-15 20:25:35 +08:00
|
|
|
{
|
2024-10-10 14:38:04 +08:00
|
|
|
"name": "hula",
|
2024-03-17 00:00:50 +08:00
|
|
|
"type": "module",
|
2024-10-27 23:47:13 +08:00
|
|
|
"version": "2.5.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": {
|
2024-10-10 14:38:04 +08:00
|
|
|
"url": "https://github.com/HuLaSpark/HuLa.git"
|
2024-04-22 02:24:36 +08:00
|
|
|
},
|
2024-01-25 23:42:35 +08:00
|
|
|
"author": {
|
|
|
|
"name": "nongyehong",
|
|
|
|
"email": "2439646234@qq.com",
|
2024-10-10 14:38:04 +08:00
|
|
|
"url": "https://github.com/HuLaSpark/HuLa"
|
2024-01-25 23:42:35 +08:00
|
|
|
},
|
2023-12-17 02:21:55 +08:00
|
|
|
"lint-staged": {
|
2024-10-28 15:18:50 +08:00
|
|
|
"*.*": [
|
2024-01-28 06:09:29 +08:00
|
|
|
"oxlint src",
|
2024-10-28 15:18:50 +08:00
|
|
|
"prettier . --write",
|
2023-12-17 02:21:55 +08:00
|
|
|
"eslint src"
|
|
|
|
]
|
|
|
|
},
|
2023-12-15 20:25:35 +08:00
|
|
|
"scripts": {
|
2024-07-11 23:58:57 +08:00
|
|
|
"dev": "vite",
|
|
|
|
"build": "vue-tsc --noEmit && vite build",
|
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-10-20 18:37:54 +08:00
|
|
|
"tauri:build:debug": "tauri build --debug",
|
2024-08-06 22:19:36 +08:00
|
|
|
"tauri:icon": "tauri icon hula.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",
|
|
|
|
"lint:staged": "lint-staged",
|
2024-10-15 23:26:26 +08:00
|
|
|
"prepare": "husky install",
|
2024-10-24 11:16:22 +08:00
|
|
|
"release": "release-it"
|
2023-12-15 20:25:35 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-26 16:57:28 +08:00
|
|
|
"@actions/github": "^6.0.0",
|
2024-10-15 21:06:26 +08:00
|
|
|
"@tauri-apps/api": "2.0.2",
|
2024-10-22 16:06:39 +08:00
|
|
|
"@tauri-apps/plugin-autostart": "2.0.0",
|
2024-10-14 20:12:12 +08:00
|
|
|
"@tauri-apps/plugin-clipboard-manager": "2.0.0",
|
|
|
|
"@tauri-apps/plugin-http": "2.0.0",
|
|
|
|
"@tauri-apps/plugin-os": "2.0.0",
|
|
|
|
"@tauri-apps/plugin-process": "2.0.0",
|
2024-10-26 16:57:28 +08:00
|
|
|
"@tauri-apps/plugin-updater": "~2",
|
2024-10-08 11:07:53 +08:00
|
|
|
"axios": "^1.7.4",
|
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-09-28 22:18:32 +08:00
|
|
|
"naive-ui": "^2.40.1",
|
2024-08-06 22:19:36 +08:00
|
|
|
"pinia": "^2.2.1",
|
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-10-07 23:18:36 +08:00
|
|
|
"vue": "^3.5.11",
|
2024-09-13 17:49:21 +08:00
|
|
|
"vue-draggable-plus": "^0.5.3",
|
2024-08-06 22:19:36 +08:00
|
|
|
"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",
|
2024-04-22 02:24:36 +08:00
|
|
|
"@commitlint/config-conventional": "^19.2.2",
|
2024-10-24 14:29:48 +08:00
|
|
|
"@release-it/bumper": "^6.0.1",
|
2024-10-24 11:16:22 +08:00
|
|
|
"@release-it/conventional-changelog": "8.0.2",
|
2024-03-06 08:03:27 +08:00
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2024-10-14 20:12:12 +08:00
|
|
|
"@tauri-apps/cli": "2.0.0",
|
2024-01-15 06:14:04 +08:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-08-06 22:19:36 +08:00
|
|
|
"@types/node": "^20.14.14",
|
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-09-13 17:49:21 +08:00
|
|
|
"@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",
|
2024-08-06 22:19:36 +08:00
|
|
|
"@vitejs/plugin-vue": "^5.1.2",
|
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-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",
|
2024-10-24 11:16:22 +08:00
|
|
|
"release-it": "^17.10.0",
|
2024-08-16 00:59:13 +08:00
|
|
|
"sass": "1.77.6",
|
2024-09-14 18:53:33 +08:00
|
|
|
"typescript": "^5.6.2",
|
2024-09-13 17:49:21 +08:00
|
|
|
"unplugin-auto-import": "^0.18.2",
|
|
|
|
"unplugin-vue-components": "^0.27.4",
|
2024-09-28 22:18:32 +08:00
|
|
|
"vite": "5.4.8",
|
2024-09-13 17:49:21 +08:00
|
|
|
"vue-tsc": "^2.1.4"
|
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
|
|
|
}
|