-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.77 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.77 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "unihub",
"version": "1.4.0",
"description": "Modern cross-platform toolkit with powerful plugin system",
"main": "./out/main/index.js",
"author": "https://github.com/t8y2",
"homepage": "https://github.com/t8y2/unihub",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev --sourcemap",
"build": "npm run typecheck && electron-vite build",
"build:fast": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"rebuild": "electron-rebuild -f -w lmdb",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "cross-env NODE_ENV=production npm run build && electron-builder --win --config.compression=maximum",
"build:mac": "cross-env NODE_ENV=production npm run build && electron-builder --mac --config.compression=maximum",
"build:linux": "cross-env NODE_ENV=production npm run build && electron-builder --linux --config.compression=maximum",
"build:prod": "cross-env NODE_ENV=production npm run build",
"prepare": "husky",
"upload:cos": "node scripts/upload-to-cos.js",
"icons": "node scripts/generate-icons.mjs",
"sync-plugins": "node scripts/sync-plugins-from-remote.mjs"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@radix-icons/vue": "^1.0.0",
"adm-zip": "^0.5.10",
"file-icon": "^6.0.0",
"get-installed-apps": "^1.1.1",
"lmdb": "^3.4.4",
"pino": "^10.1.0",
"bindings": "^1.5.0",
"pino-pretty": "^13.1.3",
"pinyin-pro": "^3.27.0",
"tailwindcss-animate": "^1.0.7",
"vue-sonner": "^2.0.9"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@tailwindcss/vite": "^4.1.18",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vueuse/core": "^14.1.0",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^10.1.0",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.6.2",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"jose": "^6.1.3",
"js-yaml": "^4.1.1",
"lint-staged": "^16.2.7",
"lucide-vue-next": "^0.562.0",
"otpauth": "^9.4.1",
"prettier": "^3.7.4",
"qrcode-generator": "^2.0.4",
"reka-ui": "^2.7.0",
"sharp": "^0.33.5",
"smol-toml": "^1.6.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"util": "^0.12.5",
"vite": "^7.2.6",
"vue": "^3.5.25",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.1.6",
"xml-js": "^1.6.11"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"electron-winstaller",
"esbuild",
"lmdb",
"msgpackr-extract"
],
"patchedDependencies": {},
"supportedArchitectures": {
"os": [
"current"
],
"cpu": [
"current"
]
},
"ignoredBuiltDependencies": [
"sharp",
"vue-demi"
]
},
"electronRebuild": {
"force": true
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.11.0+sha1.4048eeefd564ff1ab248fac3e2854d38245fe2f1"
}