-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.53 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
{
"name": "psd2pptx",
"version": "1.0.3",
"description": "Convert Photoshop (PSD) layers to PowerPoint (PPTX) slides",
"author": "Dr. Ralf S. Engelschall",
"license": "MIT",
"bin": {
"psd2pptx": "psd2pptx.js"
},
"dependencies": {
"psd.js": "3.3.17",
"jimp": "0.16.1",
"bluebird": "3.7.2",
"pptxgenjs": "3.9.0",
"zip-process": "0.2.6",
"yargs": "17.4.0",
"execa": "5.1.1",
"chalk": "4.1.2",
"tmp": "0.2.1"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"shx": "0.3.4",
"upd": "2.8.4",
"pkg": "5.5.2"
},
"upd": [ "!execa", "!chalk" ],
"scripts": {
"update": "upd",
"package": "npm-run-all -s package:gen package:mv:lnx package:mv:win package:mv:mac",
"package:gen": "pkg -t node16-linux-x64,node16-win-x64,node16-macos-x64 .",
"package:mv:lnx": "shx mv psd2pptx-linux psd2pptx-lnx-x64",
"package:mv:win": "shx mv psd2pptx-win.exe psd2pptx-win-x64.exe",
"package:mv:mac": "shx mv psd2pptx-macos psd2pptx-mac-x64",
"package:clean": "shx rm -f psd2pptx-lnx-x64 psd2pptx-win-x64.exe psd2pptx-mac-x64",
"test": "node psd2pptx.js -v -o sample.pptx sample.psd",
"clean": "npm-run-all -s package:clean"
}
}