-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "android-pc-companion",
"version": "2.0.0",
"description": "PC companion app for Android devices: mirroring, battery, files, sideloading, app management, bootloader unlock.",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "node --test \"test/*.test.js\"",
"dist": "electron-builder"
},
"author": "",
"license": "MIT",
"dependencies": {
"extract-zip": "^2.0.1",
"tar": "^7.4.3"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3",
"jsqr": "^1.4.0"
},
"build": {
"appId": "com.example.androidcompanion",
"productName": "Companion",
"publish": false,
"asarUnpack": [
"assets/**"
],
"files": [
"**/*",
"!tools/**",
"!r8.jar",
"!temp_src/**",
"!temp_classes/**"
],
"win": {
"target": "nsis",
"icon": "smartphone.ico"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage",
"icon": "smartphone.png"
}
}
}