generated from electron-vite/electron-vite-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "NeedClipboard",
"version": "0.1.2",
"main": "dist-electron/main/index.js",
"description": "A clipboard app for windows.",
"author": "showlotus <showlotus2000@gmail.com>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/showlotus/NeedClipboard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/showlotus/NeedClipboard"
},
"bugs": {
"url": "https://github.com/showlotus/NeedClipboard/issues"
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder",
"build:light-icon": "vue-tsc --noEmit && vite build && electron-builder --config light-electron-builder.json5",
"build:dark-icon": "vue-tsc --noEmit && vite build && electron-builder --config dark-electron-builder.json5",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint \"src/**/*.{js,ts,vue}\" \"electron/**/*.ts\"",
"prettier": "prettier --write \"src/**/*.{js,ts,vue}\" \"electron/**/*.ts\"",
"refresh": "npx rifraf ./node_modules && pnpm i --offline",
"install:clipboard-files": "cd .\\native\\clipboard-files && yarn",
"install:extract-file-icon": "cd .\\native\\extract-file-icon && yarn",
"install:native-clipboard": "cd .\\native\\native-clipboard && yarn",
"install:native": "npm-run-all --serial install:clipboard-files install:extract-file-icon install:native-clipboard",
"postinstall": "patch-package && electron-builder install-app-deps",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"conventional-changelog-cli": "^5.0.0",
"dayjs": "^1.11.12",
"dexie": "^4.0.8",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"electron-log": "^5.2.3",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.9",
"element-plus": "^2.7.8",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.27.0",
"fake-indexeddb": "^6.0.0",
"hotkeys-js": "^3.13.7",
"jsdom": "^24.1.1",
"patch-package": "^8.0.0",
"pinia": "^2.2.0",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"tailwindcss": "^3.4.4",
"typescript": "5.6.2",
"typescript-eslint": "^7.16.1",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.4.10",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.0.4",
"vue": "^3.4.21",
"vue-i18n": "^9.13.1",
"vue-tsc": "2.0.29"
},
"dependencies": {
"clipboard-files": "file:native\\clipboard-files",
"extract-file-icon": "file:native\\extract-file-icon",
"native-clipboard": "file:native\\native-clipboard"
}
}