-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.18 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.18 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
{
"name": "openconvert",
"private": true,
"version": "1.4.0",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build:ts": "tsc -b && vite build",
"build:linux": "tsc -b && vite build && electron-builder --linux",
"build:windows": "tsc -b && vite build && electron-builder --win",
"build:mac": "tsc -b && vite build && electron-builder --mac",
"lint": "eslint .",
"preview": "vite preview"
},
"build": {
"appId": "com.openconvert.desktop",
"productName": "OpenConvert",
"files": [
"dist",
"dist-electron",
"examples/**/*"
],
"extraResources": [
{
"from": "examples",
"to": "examples"
}
],
"asarUnpack": [
"**/*.node",
"node_modules/sharp/**/*",
"node_modules/@img/**/*"
],
"linux": {
"target": [
"AppImage",
"snap",
"tar.gz"
],
"category": "Utility"
}
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@img/sharp-linux-x64": "0.34.5",
"@tailwindcss/vite": "^4.2.1",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"pdf-parse": "^2.4.5",
"pdf-thumbnail": "^1.0.6",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-joyride": "^2.9.3",
"shadcn": "^4.0.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"electron-rebuild": "^3.2.9",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"optionalDependencies": {
"sharp": "^0.34.5"
}
}