-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "@gavoryn/clearfetch",
"version": "1.0.4",
"description": "A dependency-free, fetch-native HTTP client for modern JavaScript and TypeScript runtimes.",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.build.json",
"check:package-metadata": "node scripts/check-package-metadata.mjs",
"check:pack-smoke": "node scripts/check-pack-smoke.mjs",
"lint": "tsc --noEmit -p tsconfig.json",
"test": "tsx --test test/*.test.ts",
"test:browser-like": "tsx --test test/browser-like.test.ts"
},
"keywords": [
"fetch",
"http",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bmurdock/clearfetch.git"
},
"bugs": {
"url": "https://github.com/bmurdock/clearfetch/issues"
},
"homepage": "https://github.com/bmurdock/clearfetch#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^24.5.2",
"happy-dom": "^20.8.9",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}