forked from datapartyjs/rfparty-xyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.75 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
90
91
92
93
94
{
"name": "rfparty",
"productName": "rfparty",
"version": "0.1.7",
"description": "wireless situational awareness and debugging. its like a tricorder, for your wireless world.",
"source": "src/index.html",
"main": "./index.js",
"targets": {
"main": false
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html",
"build": "parcel build --no-scope-hoist --public-url ./ --dist-dir ./docs src/index.html",
"electron-start": "npm run build; electron-forge start",
"electron-package": "npm run build; electron-forge package",
"electron-make": "npm run build; electron-forge make",
"electron-publish": "electron-forge publish"
},
"author": "Dataparty",
"dependencies": {
"@abandonware/noble": "^1.9.2-15",
"csv": "^6.0.5",
"debug": "^4.3.3",
"electron-squirrel-startup": "^1.0.0",
"json-viewer-js": "^1.0.7",
"json5": "^2.2.0",
"jsonpath-plus": "^6.0.1",
"last-eventemitter": "^1.1.1",
"leaflet": "1.7.1",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"node-wifi": "^2.0.16",
"xml-js": "^1.6.11"
},
"license": "Apache-2.0",
"devDependencies": {
"@davidwinter/electron-forge-maker-snap": "^2.0.7",
"@electron-forge/cli": "^6.0.0-beta.63",
"@electron-forge/maker-deb": "^6.0.0-beta.63",
"@electron-forge/maker-rpm": "^6.0.0-beta.63",
"@electron-forge/maker-snap": "^6.0.0-beta.63",
"@electron-forge/maker-squirrel": "^6.0.0-beta.63",
"@electron-forge/maker-zip": "^6.0.0-beta.63",
"@parcel/packager-raw-url": "^2.5.0",
"@parcel/transformer-jsonld": "^2.5.0",
"buffer": "^6.0.3",
"electron": "18.1.0",
"events": "^3.3.0",
"http-server": "^14.1.0",
"parcel": "^2.9.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0"
},
"config": {
"forge": {
"packagerConfig": {
"icon": "images/icon",
"executableName": "rfparty"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "rfparty",
"loadingGif": "images/dataparty-loading.gif"
}
},
{
"name": "@electron-forge/maker-deb",
"config": {
"options": {
"name": "rfparty",
"maintainer": "Dataparty",
"homepage": "https://dataparty.xyz"
}
}
},
{
"name": "@davidwinter/electron-forge-maker-snap",
"config": {
"features": {
"webgl": true
},
"summary": "like a tricorder, for your wireless world."
}
}
]
}
}
}