-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "flluid",
"productName": "FLLuid",
"version": "2.0.1",
"description": "An easy-to-use display package for FIRST Lego League events run using the FLLTournament.com website",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder -m --universal; electron-builder -w"
},
"repository": "https://github.com/johnholbrook/flluid",
"keywords": [
"FLL",
"audience",
"display",
"FLLTournament",
"FIRST",
"LEGO",
"League",
"robotics"
],
"author": "John Holbrook",
"license": "MIT",
"devDependencies": {
"electron": "latest",
"electron-builder": "^22.13.1"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"@popperjs/core": "^2.4.0",
"about-window": "^1.14.0",
"accurate-interval": "^1.0.9",
"bootstrap": "^5.0.1",
"fast-csv": "^4.3.6",
"ip": "^1.1.5",
"jquery": "^3.5.0",
"jsdom": "^15.2.1",
"marked": "^3.0.4",
"needle": "^2.4.0",
"popper.js": "^1.16.1",
"require": "^0.4.4",
"socket.io": "^3.1.0",
"sortablejs": "^1.10.2",
"uglify-js": "^3.6.9"
},
"build": {
"appId": "com.fll-timer.flluid",
"mac": {
"category": "public.app-category.entertainment",
"target": "zip",
"icon": "build/icon-mac.png"
},
"win": {
"target": "portable",
"icon": "build/app-icon.png"
}
}
}