fetch-http-message
Version:
Generate an http message string using the fetch API
78 lines (77 loc) • 1.78 kB
JSON
{
"name": "fetch-http-message",
"version": "1.0.2",
"description": "Generate an http message string using the fetch API",
"keywords": [
"apis",
"batch",
"cross-fetch",
"fetch",
"form",
"gapi",
"google",
"http",
"https",
"isomorphic-fetch",
"message",
"multipart",
"node-fetch",
"parser",
"parser-multipart",
"parts",
"typescript"
],
"homepage": "https://github.com/kmalakoff/fetch-http-message#README.md",
"bugs": {
"url": "https://github.com/kmalakoff/fetch-http-message/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/fetch-http-message.git"
},
"license": "MIT",
"author": {
"name": "Kevin Malakoff",
"email": "kmalakoff@gmail.com",
"url": "https://github.com/kmalakoff"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json",
"./umd": "./dist/umd/fetch-http-message.cjs"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"docs": "tsds docs",
"format": "biome check --write --unsafe",
"test": "tsds test:browser --config wtr.config.mjs && tsds test:node --no-timeouts",
"test:engines": "tsds test:browser --config wtr.config.mjs && nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"tsds-web-test-runner": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts",
"targets": [
"cjs",
"esm",
"umd"
]
}
}