-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
24 lines (24 loc) · 924 Bytes
/
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
{
"name": "picgo-cli",
"version": "1.4.7",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-mac": "node ./mac/compile.js",
"pkg": " pkg index.js --targets win --output bin/win/picgo.exe --assets node_modules/**/* --debug",
"nexe-win64": "nexe index.js --output bin/win64/picgo.exe --target {platform: 'win', arch: 'x64'} --rc {CompanyName: 'PicGo'}",
"nexe-win32": "nexe index.js --output bin/win32/picgo.exe --target {platform: 'win', arch: 'ia32'} --rc {CompanyName: 'PicGo'}",
"nexe-mac": "nexe index.js --output bin/mac/picgo --target {platform: 'mac'}",
"nexe-linux": "nexe index.js --output bin/linux/picgo --target {platform: 'linux', arch: 'x64'}"
},
"author": "",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.2",
"picgo": "^1.4.7"
},
"pkg": {
"assets": "node_modules/**/*"
}
}