-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "pfcode-installer",
"version": "1.0.0",
"description": "Install software using winget",
"main": "main.js",
"icon": "favicon.ico",
"company": "pfcode",
"copyright": "Copyright Pfcode (c) 2022",
"scripts": {
"init": "electron .",
"start": "npx electronmon .",
"style": "npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"packager": "electron-packager ./ --platform=win32 --overwrite --icon=./favicon.ico --out=release-builds",
"packager:all": "electron-packager ./ --all"
},
"repository": "https://github.com/Dragod/pfcode-electron-installer.git",
"keywords": [
"Electron",
"winget",
"installer",
"pfcode",
"gui",
"windows",
"software",
"package-manager"
],
"author": "GitHub",
"license": "MIT",
"devDependencies": {
"electron": "^29.1.0",
"electron-builder": "^24.9.1",
"electron-packager": "^17.1.2",
"tailwindcss": "^3.3.5"
},
"dependencies": {
"copy-to-clipboard": "^3.3.3",
"qrcode": "^1.5.3",
"toastify-js": "^1.12.0"
},
"build": {
"appId": "com.pfcode.installer",
"productName": "pfcode-installer",
"companyName": "pfcode",
"icon": "favicon.ico",
"directories": {
"output": "build"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"files": [
"*.js",
"build",
"config",
"node_modules"
]
}
}