-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 845 Bytes
/
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
{
"name": "@thatguyjamal/type-fetch",
"version": "0.1.5",
"description": "A lightweight, flexible HTTP client library for making API requests in JavaScript/TypeScript.",
"repository": {
"type": "git",
"url": "https://github.com/thatguyjamal/type-fetch.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsc -p .",
"ts:init": "tsc --init",
"format": "biome format --write .",
"lint": "biome lint --write .",
"test": "jest"
},
"keywords": ["http", "client", "typescript", "library", "request", "fetch"],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}