-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "codeb-link",
"version": "1.0.0",
"description": "Codeb Link — Cross-device clipboard & file sync over LAN",
"homepage": "https://link.codebminds.com",
"author": "Codeb Minds <contact@codebminds.com>",
"main": "dist-electron/main.js",
"scripts": {
"build:main": "tsc -p tsconfig.electron.json && cp icon.png dist-electron/",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:renderer",
"dev": "npm run build:main && concurrently \"vite\" \"VITE_DEV_SERVER_URL=http://localhost:5173 electron . --no-sandbox\"",
"start": "electron . --no-sandbox",
"dist": "npm run build && electron-builder --linux"
},
"dependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6",
"socket.io": "^4.8.3",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/crypto-js": "^4.2.2",
"@vitejs/plugin-react": "^4.0.0",
"concurrently": "^8.0.0",
"electron": "^26.0.0",
"electron-builder": "^24.0.0",
"typescript": "~5.0.0",
"vite": "^5.0.0"
},
"build": {
"appId": "com.codebminds.codeblink",
"productName": "Codeb Link",
"icon": "icon.png",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"preload.js",
"package.json",
"icon.png",
"favicon.svg",
"icons.svg",
"node_modules/**/*"
],
"linux": {
"target": ["AppImage", "deb"],
"category": "Network"
}
}
}