-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "scoop-ui",
"version": "1.0.0",
"description": "A UI for the Scoop package manager",
"main": "main.js",
"scripts": {
"start": "electron .",
"start-dev": "set NODE_ENV=development&& electron .",
"postinstall": "vendor-copy",
"dist": "electron-packager . scoop-ui --platform=win32 --arch=x64 --out ./out --overwrite"
},
"repository": "https://github.com/gitolicious/scoop-ui",
"keywords": [
"scoop"
],
"author": "gitolicious",
"license": "CC0-1.0",
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"bootstrap": "^5.3.3",
"electron": "^30.0.2",
"electron-packager": "^17.1.2",
"tabulator-tables": "^6.2.1",
"vendor-copy": "^3.0.1"
},
"dependencies": {
"electron-json-storage": "^4.6.0",
"jquery": "^3.7.1"
},
"vendorCopy": [
{
"from": "node_modules/tabulator-tables/dist",
"to": "dist/tabulator"
},
{
"from": "node_modules/@fortawesome/fontawesome-free",
"to": "dist/fontawesome"
},
{
"from": "node_modules/bootstrap/dist",
"to": "dist/bootstrap"
},
{
"from": "node_modules/jquery/dist",
"to": "dist/jquery/js"
}
]
}