-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.8 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": "touchportal_webpage_capture",
"version": "1.0.0",
"description": "Capture a webpage at a specific interval and display directly in Touch Portal",
"main": "src/index.js",
"bin": {
"touchportal_webpage_capture": "src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pkg-win": "pkg --targets node14-win-x64 .",
"pkg-mac": "pkg --targets node14-macos-x64 .",
"build-win": "pkg --targets node14-win-x64 . && move touchportal_webpage_capture.exe base/Windows/TPWebpageCapture/ && Xcopy /E /I node_modules\\puppeteer\\.local-chromium\\win64-884014\\chrome-win base\\Windows\\TPWebpageCapture\\puppeteer && del Installers\\TPWebpageCapture-Win.tpp && cd base\\Windows && 7z a -tzip ../../Installers/TPWebpageCapture-Win.tpp TPWebpageCapture && del TPWebpageCapture\\touchportal_webpage_capture.exe && rmdir /Q /s TPWebpageCapture\\puppeteer",
"build-mac": "pkg --targets node14-macos-x64 . && move touchportal_webpage_capture base/Mac/TPWebpageCapture/ && del Installers\\TPWebpageCapture-Mac.tpp && cd base\\Mac && 7z a -tzip ../../Installers/TPWebpageCapture-Mac.tpp TPWebpageCapture && del TPWebpageCapture\\touchportal_webpage_capture && rmdir /Q /s TPWebpageCapture\\puppeteer"
},
"pkg": {
"scripts": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/spdermn02/TouchPortal_WebpageCapture_Plugin.git"
},
"keywords": [
"TouchPortalPlugin",
"TouchPortal"
],
"author": "Jameson Allen aka Spdermn02",
"license": "MIT",
"bugs": {
"url": "https://github.com/spdermn02/TouchPortal_WebpageCapture_Plugin/issues"
},
"homepage": "https://github.com/spdermn02/TouchPortal_WebpageCapture_Plugin#readme",
"dependencies": {
"puppeteer": "^10.0.0",
"touchportal-api": "^2.0.1"
}
}