-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.89 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
{
"name": "codeb-link",
"version": "1.1.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",
"electron-updater": "^6.8.9",
"socket.io-client": "^4.7.4"
},
"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",
"artifactName": "Codeb-Link-${version}.${ext}",
"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"
},
"deb": {
"artifactName": "Codeb-Link-${version}-amd64.${ext}"
},
"publish": [
{
"provider": "generic",
"url": "https://updates.codebminds.com/link/releases/"
}
]
}
}