-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
69
70
{
"name": "extended-fetch",
"version": "1.9.0",
"description": "Extended http client based on fetch",
"main": "build/umd/extended-fetch.umd.js",
"module": "build/es/index.js",
"types": "build/es/index.d.ts",
"browser": "build/umd/extended-fetch.umd.js",
"files": [
"build",
"!build/**/tsconfig.*",
"README.md"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"proxy": "cross-env NODE_ENV=production rollup -c --watch",
"prepublishOnly": "npm run build && npm run types:add",
"lint": "npx biome lint .",
"fix": "npx biome lint --write .",
"format": "npx biome format . --write && git update-index --again",
"test": "uvu -r esbuild-register src spec",
"types:sync": "npx typesync && npm i",
"types:check": "tsc --noEmit --project tsconfig.json",
"types:copy": "node build-utils/copy-declarations.mjs",
"types:emit": "npx tsc -p ./build-utils/tsconfig.declarations.json",
"types:add": "npx npm-run-all --sequential --npm-path npm types:emit types:copy"
},
"engines": {
"node": "^16 || >=18"
},
"repository": {
"type": "git",
"url": "https://github.com/glebcha/extended-fetch.git"
},
"keywords": [
"fetch",
"axios",
"middleware",
"node-fetch"
],
"author": "Glebcha",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@types/core-js": "^2.5.8",
"@types/debug": "^4.1.12",
"@types/estree": "^1.0.6",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"colorette": "^2.0.20",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"esbuild": "^0.24.0",
"esbuild-register": "^3.6.0",
"lefthook": "^1.8.4",
"msw": "^2.6.5",
"npm-run-all": "4.1.5",
"prettier": "^3.3.3",
"rollup": "^4.27.3",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "^5.6.3",
"uvu": "^0.5.6"
}
}