-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·93 lines (93 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·93 lines (93 loc) · 2.75 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
92
93
{
"name": "AudioMoth-Config",
"version": "1.13.2",
"description": "The configuration app for the AudioMoth acoustic monitoring device.",
"main": "main.js",
"author": "openacousticdevices.info <theteam@openacousticdevices.info>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/OpenAcousticDevices/AudioMoth-Configuration-App.git"
},
"scripts": {
"postinstall": "install-app-deps && node scripts/install-electron-binary.js",
"start": "electron .",
"dist": "node builder.js",
"buildcss": "npx sass --load-path=node_modules VerticalTabs/verticalTabs.scss VerticalTabs/verticalTabs.css",
"install-electron-binary": "node scripts/install-electron-binary.js"
},
"build": {
"asar": {
"smartUnpack": true
},
"appId": "info.openacousticdevices.audiomothconfigurationapp",
"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": "AudioMothConfigurationAppSetup${version}.dmg"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"artifactName": "AudioMothConfigurationAppSetup${version}.${ext}"
},
"nsis": {
"createDesktopShortcut": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "AudioMothConfigurationAppSetup${version}.exe",
"shortcutName": "AudioMoth Configuration App",
"uninstallDisplayName": "AudioMoth Configuration App ${version}"
},
"linux": {
"icon": "build/",
"category": "Utility",
"artifactName": "AudioMothConfigurationAppSetup${version}.${ext}"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"clean-css-cli": "^5.6.3",
"electron": "42.5.0",
"electron-builder": "^26.15.3",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"sass": "^1.101.0"
},
"dependencies": {
"@electron/rebuild": "^4.0.6",
"@electron/remote": "^2.1.3",
"@popperjs/core": "^2.11.8",
"audiomoth-hid": "^2.3.0",
"audiomoth-utils": "^1.10.0",
"bootstrap": "^5.3.8",
"bootstrap-5-vertical-tabs": "^2.0.1",
"bootstrap-slider": "^11.0.2",
"electron-debug": "4.1.0",
"electron-localshortcut": "^3.2.1",
"http-cache-semantics": "^4.2.0",
"jquery": "^4.0.0",
"jsonschema": "1.5.0",
"semver": "^7.8.5",
"showdown": "^2.1.0",
"strftime": "0.10.3"
},
"engines": {
"node": ">=26.1.0"
}
}