-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.28 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
{
"name": "AudioMoth-Mic",
"version": "1.2.4",
"description": "The configuration app for the AudioMoth USB microphone.",
"main": "main.js",
"author": "openacousticdevices.info",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/OpenAcousticDevices/AudioMoth-USB-Microphone-App.git"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"dist": "node builder.js"
},
"build": {
"asar": {
"smartUnpack": true
},
"appId": "info.openacousticdevices.audiomothusbmicrophoneapp",
"mac": {
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.inherit.plist",
"target": "dmg"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 430,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"artifactName": "AudioMothUSBMicrophoneAppSetup${version}.dmg"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"createDesktopShortcut": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "AudioMothUSBMicrophoneAppSetup${version}.exe",
"shortcutName": "AudioMoth USB Microphone App",
"uninstallDisplayName": "AudioMoth USB Microphone App ${version}"
},
"linux": {
"icon": "build/",
"category": "Utility"
}
},
"devDependencies": {
"electron": "25.3.2",
"electron-builder": "^24.6.3",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0"
},
"dependencies": {
"@electron/remote": "^2.0.10",
"@popperjs/core": "^2.11.8",
"audiomoth-hid": "^2.3.0",
"audiomoth-utils": "^1.4.1",
"bootstrap": "5.3.1",
"bootstrap-slider": "^11.0.2",
"electron-debug": "3.0.1",
"electron-localshortcut": "^3.2.1",
"electron-progressbar": "^1.2.0",
"jquery": "^3.7.0",
"jsonschema": "1.4.1",
"popper.js": "^1.15.0",
"showdown": "^1.9.1",
"strftime": "0.10.2"
},
"engines": {
"node": ">=10.16.2"
}
}