-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "@hattip/polyfills",
"version": "0.0.49",
"type": "module",
"description": "Fetch API polyfills",
"files": [
"dist"
],
"exports": {
"./node-fetch": "./dist/node-fetch.js",
"./whatwg-node": "./dist/whatwg-node.js",
"./get-set-cookie": "./dist/get-set-cookie.js",
"./crypto": "./dist/crypto.js",
"./half-duplex-request": "./dist/half-duplex-request.js"
},
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
]
}
},
"author": "Fatih Aygün <[email protected]>",
"repository": "github:hattipjs/hattip",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsup",
"dev": "tsup --watch",
"prepack": "pnpm build",
"test": "pnpm test:typecheck && pnpm test:lint && pnpm test:unit && pnpm test:package",
"test:unit": "vitest run --reporter=verbose",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint . --max-warnings 0",
"test:package": "publint --strict"
},
"devDependencies": {
"@cyco130/eslint-config": "^5.0.0",
"@types/node": "^18.19.64",
"eslint": "^9.14.0",
"publint": "^0.2.12",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"@hattip/core": "workspace:*",
"@whatwg-node/fetch": "^0.9.22",
"node-fetch-native": "^1.6.4"
}
}