electron-vite-vue/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2020-08-16 12:37:20 +08:00
{
2021-11-11 17:52:50 +08:00
"name": "electron-vue-vite",
2022-01-30 08:42:58 +08:00
"version": "1.0.0",
2021-11-11 17:52:50 +08:00
"main": "dist/main/index.cjs",
2020-08-16 20:42:52 +08:00
"author": "草鞋没号 <308487730@qq.com>",
"license": "MIT",
2020-08-16 12:37:20 +08:00
"scripts": {
2021-11-11 17:52:50 +08:00
"dev": "node scripts/watch.mjs",
2022-03-16 10:21:25 +08:00
"prebuild": "vue-tsc --noEmit --p packages/renderer/tsconfig.json && node scripts/build.mjs",
"build": "electron-builder",
"init": "git config core.hooksPath .git/hooks/ && rm -rf .git/hooks && npx simple-git-hooks",
"test:e2e": "npx playwright test",
"test:e2e:headless": "npx playwright test --headed"
2020-08-17 09:16:26 +08:00
},
2021-11-11 17:52:50 +08:00
"engines": {
2022-03-15 08:34:01 +08:00
"node": ">=14.17.0"
2020-08-16 12:37:20 +08:00
},
"devDependencies": {
"@playwright/test": "^1.19.2",
2022-01-30 08:28:04 +08:00
"@vitejs/plugin-vue": "^2.1.0",
"electron": "16.0.8",
2022-01-04 09:15:00 +08:00
"electron-builder": "^22.14.5",
"nano-staged": "^0.6.0",
"simple-git-hooks": "^2.7.0",
2022-01-30 08:28:04 +08:00
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vite-plugin-electron-renderer": "^0.3.1",
"vite-plugin-resolve": "^2.0.1",
2022-01-30 08:28:04 +08:00
"vue": "^3.2.29",
"vue-tsc": "^0.31.1"
2020-08-16 21:10:10 +08:00
},
"env": {
2022-03-15 08:34:01 +08:00
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344
},
2020-08-16 21:10:10 +08:00
"keywords": [
"electron",
2022-03-23 19:45:46 +08:00
"rollup",
"vite",
2020-08-16 21:10:10 +08:00
"vue3",
2022-03-23 19:45:46 +08:00
"vue"
2022-03-23 16:50:15 +08:00
]
}