-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "AudioMoth-Time",
"version": "1.1.3",
"description": "The time app for the AudioMoth acoustic acoustic monitoring device.",
"main": "main.js",
"author": "openacousticdevices.info",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/OpenAcousticDevices/AudioMoth-Time-App.git"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"dist": "node builder.js"
},
"build": {
"asar": {
"smartUnpack": true
},
"appId": "info.openacousticdevices.audiomothtimeapp",
"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": "AudioMothTimeAppSetup${version}.dmg"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"createDesktopShortcut": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "AudioMothTimeAppSetup${version}.exe",
"shortcutName": "AudioMoth Time App",
"uninstallDisplayName": "AudioMoth Time App ${version}"
},
"linux": {
"icon": "build/",
"category": "Utility"
}
},
"devDependencies": {
"electron": "25.3.2",
"electron-builder": "^24.6.3",
"eslint": "^8.45.0",
"eslint-plugin-n": "^16.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0"
},
"dependencies": {
"@electron/remote": "^2.0.10",
"audiomoth-hid": "^2.3.0",
"bootstrap": "5.3.1",
"electron-debug": "3.2.0",
"jquery": "^3.7.0",
"popper.js": "^1.15.0",
"strftime": "0.10.2",
"http-cache-semantics": "^4.1.1",
"semver": "^7.5.4"
},
"engines": {
"node": ">=10.16.2"
}
}