UNPKG

@d1g1tal/transportr

Version:

JavaScript wrapper for the Fetch API and more...

117 lines 2.87 kB
{ "name": "@d1g1tal/transportr", "author": "D1g1talEntr0py", "version": "2.1.2", "license": "ISC", "description": "JavaScript wrapper for the Fetch API and more...", "homepage": "https://github.com/D1g1talEntr0py/transportr#readme", "repository": { "type": "git", "url": "git+https://github.com/D1g1talEntr0py/transportr.git" }, "bugs": { "url": "https://github.com/D1g1talEntr0py/transportr/issues" }, "maintainers": [ { "name": "D1g1talEntr0py", "email": "jason.dimeo@gmail.com" } ], "engines": { "node": ">=20.0.0" }, "type": "module", "exports": { ".": { "types": "./dist/transportr.d.ts", "import": "./dist/transportr.js" }, "./headers": { "types": "./dist/http-request-headers.d.ts", "import": "./dist/http-request-headers.js" }, "./response-headers": { "types": "./dist/http-response-headers.d.ts", "import": "./dist/http-response-headers.js" }, "./methods": { "types": "./dist/http-request-methods.d.ts", "import": "./dist/http-request-methods.js" }, "./media-types": { "types": "./dist/http-media-type.d.ts", "import": "./dist/http-media-type.js" } }, "publishConfig": { "access": "public" }, "files": [ "/dist", "README.md", "LICENSE" ], "dependencies": { "@d1g1tal/media-type": "^6.0.4", "@d1g1tal/subscribr": "^4.1.8", "dompurify": "^3.3.3" }, "peerDependencies": { "jsdom": ">=25.0.0" }, "peerDependenciesMeta": { "jsdom": { "optional": true } }, "devDependencies": { "@d1g1tal/tsbuild": "^1.6.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "^10.0.1", "@types/jsdom": "^28.0.0", "@types/node": "^25.5.0", "@typescript-eslint/eslint-plugin": "^8.57.0", "@typescript-eslint/parser": "^8.57.0", "@vitest/coverage-v8": "^4.1.0", "@vitest/ui": "^4.1.0", "@xmldom/xmldom": "^0.9.8", "eslint": "^10.0.3", "eslint-plugin-compat": "^7.0.1", "jsdom": "^28.1.0", "eslint-plugin-jsdoc": "^62.8.0", "globals": "^17.4.0", "typescript": "^5.9.3", "typescript-eslint": "^8.57.0", "vitest": "^4.1.0" }, "browserslist": [ ">0.3% and not dead", "defaults and fully supports es6-module", "not iOS <= 16.1", "node >= 20.0.0" ], "keywords": [ "Fetch", "HTTP", "Request", "Response", "AbortController", "Timeout", "EventEmitter", "Content-Type", "Type-Safe", "TypeScript" ], "scripts": { "build": "tsbuild", "build:release": "tsbuild --minify --force", "build:watch": "tsbuild --watch", "type-check": "tsbuild --noEmit", "lint": "eslint ./src", "test": "vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage" } }