-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "amc",
"version": "0.4.0",
"description": "Copy photos and videos from Android phone to local computer via ADB",
"main": "dist/server.js",
"bin": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"setup": "node scripts/setup.js",
"setup:current": "node scripts/setup.js --current",
"dist": "npm run build && pkg . --icon public/logo.ico --no-bytecode --public && node scripts/rename-release.js"
},
"dependencies": {
"exifr": "^7.1.3",
"express": "^4.18.2",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^24.0.0",
"@types/ws": "^8.5.10",
"@yao-pkg/pkg": "^5.11.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.2",
"unzipper": "^0.12.3"
},
"pkg": {
"assets": [
"public/**/*",
"bin/**/*"
],
"targets": [
"node20-win-x64",
"node20-macos-x64",
"node20-macos-arm64",
"node20-linux-x64"
],
"outputPath": "release"
}
}