-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.2 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
{
"name": "snipsync",
"version": "0.5.0",
"private": true,
"description": "Cross-device clipboard and quick-notes syncing app",
"author": "Vincent Jacobs",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"build": "vite build && electron-builder",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@sentry/electron": "^5.12.0",
"@supabase/supabase-js": "^2.39.0",
"electron-updater": "^6.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.1.0",
"@vitejs/plugin-react": "^5.2.0",
"concurrently": "^8.2.2",
"electron": "^35.7.5",
"electron-builder": "^26.8.2",
"jsdom": "^23.0.0",
"vite": "^6.4.1",
"vitest": "^2.1.9",
"wait-on": "^7.2.0"
},
"build": {
"appId": "xyz.snipsync.app",
"productName": "SnipSync",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraResources": [
{ "from": "public/tray-icon.png", "to": "tray-icon.png" },
{ "from": "public/tray-icon@2x.png", "to": "tray-icon@2x.png" },
{ "from": "public/tray-icon-sync.png", "to": "tray-icon-sync.png" },
{ "from": "public/tray-icon-sync@2x.png", "to": "tray-icon-sync@2x.png" },
{ "from": "public/tray-icon-offline.png", "to": "tray-icon-offline.png" },
{ "from": "public/tray-icon-offline@2x.png", "to": "tray-icon-offline@2x.png" },
{ "from": "public/tray-icon-error.png", "to": "tray-icon-error.png" },
{ "from": "public/tray-icon-error@2x.png", "to": "tray-icon-error@2x.png" }
],
"mac": {
"target": "dmg",
"icon": "public/app-icon.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "public/app-icon.png"
},
"publish": {
"provider": "github",
"owner": "Vincentj88-python",
"repo": "snipsync"
}
}
}