-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hypf",
"version": "0.2.3",
"description": "Small and strong-typed HTTP client for Deno, Bun, Node.js, Cloudflare Workers and Browsers.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/fzn0x/hypf.git"
},
"type": "module",
"files": [
"browser",
"dist",
"LICENSE",
"package.json",
"README.md"
],
"author": {
"name": "Muhammad Fauzan",
"email": "developerfauzan@gmail.com",
"url": "https://fzn0x.dev/"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"format:fix": "prettier --check --cache --write \"src/**/*.{js,ts,tsx}\"",
"format": "prettier --check --cache \"src/**/*.{js,ts,tsx}\"",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "eslint --ext js,ts,tsx src --fix",
"copy:package.cjs.json": "cp ./package.cjs.json ./dist/cjs/package.json && cp ./package.cjs.json ./dist/types/package.json ",
"vitest:watch": "vitest --watch",
"test": "vitest",
"build": "rimraf dist && tsx ./build.ts && bun run copy:package.cjs.json && webpack",
"watch": "rimraf dist && tsx ./build.ts --watch && bun run copy:package.cjs.json",
"postbuild": "publint",
"release": "np",
"test:build": "bun run build && bun run test"
},
"keywords": [
"fetch",
"request",
"http",
"https",
"fetching",
"get",
"url",
"curl",
"wget",
"networking",
"ajax",
"api",
"rest",
"xhr",
"browser",
"http-client",
"http-request",
"http-response",
"data-fetching",
"web-request",
"http-utilities",
"web-data",
"fetch-data",
"http-fetch",
"resource-fetching",
"web-access",
"http-access",
"http-interaction",
"http-communication",
"data-retrieval"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@hono/eslint-config": "^0.0.6",
"@types/node": "^20.14.4",
"arg": "^5.0.2",
"esbuild": "^0.15.12",
"esbuild-register": "^3.5.0",
"eslint": "8.55.0",
"glob": "^10.4.1",
"np": "^10.0.5",
"prettier": "^3.3.2",
"publint": "^0.2.8",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"tsx": "^4.15.6",
"typescript": "5.3.3",
"vitest": "^1.6.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}