-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.8 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
{
"name": "sight",
"version": "0.2.3",
"description": "A cross-platform image viewer based on Electron and Vue 🌄",
"homepage": "https://github.com/valsaven/sight",
"license": "GPL-3.0",
"private": true,
"author": {
"name": "Val Saven",
"email": "val.saven@gmail.com"
},
"main": "./out/main/index.js",
"scripts": {
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint:eslint": "eslint --cache .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"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",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^2.0.0",
"@tanstack/vue-virtual": "^3.13.21",
"@types/node": "^25.3.5",
"@vitejs/plugin-vue": "^6.0.4",
"date-fns": "^4.1.0",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"hash-wasm": "^4.12.0",
"image-size": "^2.0.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"p-limit": "^7.3.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-electron-renderer": "^0.14.6",
"vue": "^3.5.29",
"vue-tsc": "^3.2.5"
}
}