-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.02 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
{
"type": "module",
"license": "MIT",
"repository": "https://github.com/mediaclip/http-pipeline-ts",
"description": "HTTP Pipeline is a library designed to assist in creating HTTP Clients using a clean, structured approach inspired by Azure's HttpPipeline. It provides an alternative to manual fetch() calls by employing a builder pattern for request creation.",
"name": "@mediaclip/http-pipeline",
"version": "1.0.7",
"main": "./dist/index.js",
"keywords": ["fetch", "http", "pipeline"],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"clean": "tsc --build --clean --incremental tsconfig.json"
},
"devDependencies": {
"typescript": "^5.4.3",
"tsup": "^8.0.2"
}
}