-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 Bytes
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
{
"name": "Scrollable",
"author": "John Holbrook",
"version": "0.3.0",
"description": "Generate smooth auto-scrolling tables for your event or livestream",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "node build.js"
},
"dependencies": {
"bootstrap": "^5.0.0-beta1",
"convert-csv-to-array": "^1.0.3",
"ip": "^1.1.5",
"jquery": "^3.6.0",
"socket.io": "^3.1.0",
"sortablejs": "^1.12.0"
},
"devDependencies": {
"electron": "^11.1.0",
"electron-packager": "^15.4.0"
},
"build": {
"appId": "com.fll-timer.scrollable",
"mac": {
"category": "public.app-category.entertainment",
"target": "zip",
"icon": "build/test.png"
},
"win": {
"target": "portable",
"icon": "build/test.png"
}
}
}