-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "puppeteer-tough-cookie-store",
"version": "1.2.0",
"description": "Puppeteer cookie store implementation for tough-cookie",
"repository": "utyfua/puppeteer-tough-cookie-store",
"typings": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"prebuild": "rimraf -g dist/*",
"build": "rollup -c",
"docs": "typedoc src/* --cleanOutputDir --name \"Puppeteer cookie store implementation for tough-cookie\"",
"test": "jest --forceExit --testTimeout=10000"
},
"keywords": [
"puppeteer",
"cookie",
"cookies",
"jar",
"cookiejar",
"cookie store",
"tough-cookie",
"tough-cookie store",
"tough",
"store"
],
"author": "Utyfua",
"license": "MIT",
"peerDependencies": {
"tough-cookie": "^4 || ^5"
},
"peerDependenciesMeta": {
"tough-cookie": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/tough-cookie": "^4.0.5",
"@types/universalify": "^1.0.3",
"got": "^11.8.5",
"jest": "^29.7.0",
"puppeteer": "^24.2.1",
"rimraf": "^6.0.1",
"rollup": "^4.21.0",
"tslib": "^2.6.3",
"typedoc": "0.27.7",
"typescript": "5.6.3"
},
"dependencies": {
"tough-cookie": "^5.1.1",
"universalify": "^2.0.0"
}
}