-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 KB
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
{
"name": "ky-cookies",
"version": "0.0.0-semantic-release",
"description": "Cookie management plugin for ky using tough-cookie",
"keywords": [
"ky",
"cookies",
"tough-cookie",
"fetch",
"http",
"cookie-jar",
"session"
],
"license": "MIT",
"repository": "privatenumber/ky-cookies",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"packageManager": "pnpm@10.20.0",
"scripts": {
"build": "pkgroll --clean-dist",
"type-check": "tsc",
"lint": "lintroll --git --node",
"test": "node tests/index.ts",
"prepack": "pnpm build && clean-pkg-json"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@types/tough-cookie": ">=4",
"ky": ">=1",
"tough-cookie": ">=6"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/tough-cookie": "^4.0.5",
"clean-pkg-json": "^1.3.0",
"ky": "^1.14.3",
"lintroll": "^1.29.1",
"manten": "2.0.0-beta.2",
"pkgroll": "^2.26.3",
"tough-cookie": "^6.0.0",
"typescript": "^5.9.3"
}
}