-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.51 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.51 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "codedeployer",
"version": "0.1.0",
"private": true,
"description": "Desktop app for automatically syncing local development files to server directories over SFTP.",
"main": "dist/main/app.js",
"scripts": {
"dev": "npm run build:main && concurrently -k \"npm:dev:renderer\" \"npm:dev:electron\"",
"dev:renderer": "vite --host 127.0.0.1",
"dev:electron": "wait-on http://127.0.0.1:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .",
"build": "npm run typecheck && npm run build:main && npm run build:renderer",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"pack:mac": "npm run build && electron-builder --mac --dir --arm64 --x64",
"dist:mac": "npm run build && electron-builder --mac dmg zip --arm64 --x64",
"typecheck": "tsc -p tsconfig.main.json --noEmit && tsc -p tsconfig.renderer.json --noEmit",
"start": "electron ."
},
"keywords": [
"sftp",
"sync",
"electron",
"deployment"
],
"author": "",
"license": "UNLICENSED",
"build": {
"appId": "com.codedeployer.app",
"productName": "CodeDeployer",
"directories": {
"output": "release"
},
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [
"dist/**/*",
"package.json",
"!node_modules/cpu-features/**",
"!node_modules/ssh2/lib/protocol/crypto/build/**"
],
"npmRebuild": false,
"nodeGypRebuild": false,
"asarUnpack": [
"**/*.node"
],
"mac": {
"category": "public.app-category.developer-tools",
"identity": null,
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
]
}
]
},
"dmg": {}
},
"dependencies": {
"basic-ftp": "^6.0.1",
"chokidar": "^4.0.3",
"lucide-react": "^0.468.0",
"picomatch": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ssh2-sftp-client": "^11.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/picomatch": "^3.0.1",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/ssh2-sftp-client": "^9.0.4",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^42.3.2",
"electron-builder": "^26.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"wait-on": "^8.0.1"
}
}