-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "puppeteer-extra-plugin-session",
"version": "1.0.1",
"description": "A puppeteer plugin to dump and inject session data.",
"keywords": [
"puppeteer",
"puppeteer-extra",
"puppeteer-extra-plugin",
"session",
"puppeteer-extra-plugin-stealth",
"cookies",
"indexeddb",
"profile",
"sessionStorage",
"localStorage"
],
"repository": "https://github.com/clouedoc/puppeteer-extra-plugin-session",
"license": "MIT",
"author": "Camille Louédoc <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "yarn tsc",
"detect-circular-dependencies": "madge --circular --extensions ts ./src",
"dev": "nodemon --exec 'yarn build && yarn lint && yarn detect-circular-dependencies && yarn sort'",
"dev:publish": "rm -rf lib && yarn build && yarn publish",
"lint": "eslint ./src --fix --max-warnings 0",
"ncu": "npx npm-check-updates",
"prettier": "prettier --config .prettierrc --write --loglevel error .",
"sort": "npx sort-package-json",
"test": "yarn jest --watchAll",
"todo": "leasot -x --reporter markdown 'src/**/*.ts' --tags STEALTH > TODO.md"
},
"dependencies": {
"puppeteer-extra-plugin": "^3.2.2",
"tslib": "^2.4.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@rushstack/eslint-config": "^3.0.1",
"@types/jest": "^29",
"@types/node": "^14",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-config-prettier-standard": "^4",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2",
"eslint-plugin-node": "^11",
"eslint-plugin-prettier": "^4",
"eslint-plugin-promise": "^6",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.0.3",
"leasot": "^13.2.0",
"madge": "^5.0.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prettier-config-standard": "^5",
"puppeteer": "^18.0.5",
"puppeteer-core": "^18.0.5",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"ts-jest": "^29.0.2",
"typescript": "^4.8.3"
}
}