-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.44 KB
/
package.json
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ship",
"productName": "Ship",
"version": "1.0.11",
"description": "Ship your files without internet",
"main": "./out/main/index.js",
"author": "babyo7_",
"homepage": "https://ship-file.vercel.app",
"publisher": "tanmay11117",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"builder": "electron-builder"
},
"license": "ISC",
"build": {
"publish": [
{
"provider": "github",
"releaseType": "release",
"owner": "babyo77",
"repo": "https://github.com/babyo77/ship"
}
],
"appId": "app.ship.babyo7",
"win": {
"target": [
"nsis"
],
"icon": "icons.ico",
"signingHashAlgorithms": [
"sha256"
],
"publisherName": "tanmay11117",
"signAndEditExecutable": true,
"verifyUpdateCodeSignature": true
},
"extraResources": [
{
"from": "public/",
"to": "./public",
"filter": [
"**/*"
]
},
{
"from": "icons.ico",
"to": "./icons.ico",
"filter": [
"**/*"
]
}
],
"nsis": {
"include": "./msg.nsh",
"installerIcon": "icons.ico",
"uninstallerIcon": "icons.ico",
"uninstallDisplayName": "uninstall ship",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"repository": "https://github.com/babyo77/ship",
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clipboard-event": "^1.6.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"multer": "^1.4.5-lts.1",
"qrcode.react": "^3.1.0",
"react-icons": "^5.2.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^18.19.33",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "^30.0.9",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.38",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}