-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "puppeteer-in-electron",
"version": "3.0.5",
"description": "Run puppeteer within an electron app.",
"main": "./bin/index.js",
"scripts": {
"lint": "eslint --ext .ts,.js .",
"build": "tsc",
"test": "electron ./bin/test.js && electron ./test.js",
"pack": "electron-packager --no-prune --overwrite --out dist . && sed -i 's/index.js/test.js/g' ./dist/puppeteer-in-electron-linux-x64/resources/app/package.json",
"testPack": "./dist/puppeteer-in-electron-linux-x64/puppeteer-in-electron",
"all": "npm run lint && npm run build && npm run test && npm run pack && npm run testPack"
},
"repository": {
"type": "git",
"url": "https://github.com/TrevorSundberg/puppeteer-in-electron.git"
},
"keywords": [
"electron",
"puppeteer"
],
"author": "Trevor Sundberg",
"license": "MIT",
"dependencies": {
"@types/async-retry": "^1.4.1",
"@types/node-fetch": "^2.5.4",
"@types/puppeteer-core": "^1.9.0",
"@types/uuid": "^3.4.6",
"async-retry": "^1.3.1",
"get-port": "^5.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"electron": "^13.1.2",
"electron-packager": "^15.2.0",
"eslint": "^7.28.0",
"puppeteer-core": "^10.0.0",
"typescript": "^4.3.2"
}
}