-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "@scraping.house/ssgenerator",
"version": "1.0.0",
"description": "A toolkit to take screenshots.",
"main": "out/index.js",
"scripts": {
"compile": "./node_modules/.bin/tsc -p tsconfig.json",
"prestart": "npm run lint --fix && npm run compile",
"lint": "node_modules/.bin/eslint -c .eslintrc.json --fix src/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:Makepad-fr/screenshot.js.git"
},
"keywords": [
"TypeScript",
"JavaScript",
"Playwright",
"Automation",
"Screenshot",
"Web",
"automation",
"RPA"
],
"author": "Makepad Developers <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Makepad-fr/screenshot.js/issues"
},
"homepage": "https://github.com/Makepad-fr/screenshot.js#readme",
"dependencies": {
"playwright-core": "^1.16.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.25.2",
"typescript": "^4.4.4"
}
}