-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.13 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
{
"name": "codeb-link-win",
"version": "1.0.0",
"description": "Codeb Link — Cross-device clipboard & file sync over LAN (Windows)",
"homepage": "https://link.codebminds.com",
"author": "Codeb Minds <contact@codebminds.com>",
"main": "dist-electron/main.js",
"scripts": {
"build:main": "tsc -p tsconfig.electron.json && node -e \"require('fs').copyFileSync('icon.png', 'dist-electron/icon.png')\"",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:renderer",
"dev": "npm run build:main && concurrently \"vite\" \"cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"start": "electron .",
"dist": "npm run build && electron-builder --win"
},
"build": {
"appId": "com.codebminds.codeblink",
"productName": "Codeb Link",
"icon": "icon.png",
"publish": {
"provider": "generic",
"url": "https://updates.codebminds.com/link/releases",
"channel": "latest"
},
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json",
"icon.png",
"favicon.svg",
"icons.svg",
"node_modules/**/*"
],
"win": {
"target": [
"nsis",
"zip"
],
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico"
}
},
"dependencies": {
"crypto-js": "^4.2.0",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.5.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^9.0.1",
"cross-env": "^10.1.0",
"electron": "^26.6.10",
"electron-builder": "^24.13.3",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
}
}