UNPKG

@agyemanjp/http

Version:

Http communication, routing, and proxying library based on request API

61 lines (60 loc) 1.97 kB
{ "name": "@agyemanjp/http", "version": "2.0.0", "description": "Http communication, routing, and proxying library based on request API", "type": "module", "sideEffects": false, "main": "index.js", "types": "index.d.ts", "files": [ "/*" ], "homepage": "https://github.com/agyemanjp/http.js#readme", "repository": { "type": "git", "url": "git+https://github.com/agyemanjp/storage.js.git" }, "bugs": { "url": "https://github.com/agyemanjp/http.js/issues" }, "keywords": [ "HTTP", "Request", "TypeScript" ], "author": { "name": "James Prempeh", "email": "agyemanjp@danfortsystems.com" }, "license": "MIT", "dependencies": { "@agyemanjp/standard": "6.0.1", "cross-blob": "3.0.1", "cross-fetch": "3.1.5", "cross-formdata": "1.0.3" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@types/bun": "1.1.14", "@types/express": "4.17.13", "@types/source-map-support": "0.5.1", "npm-run-all": "4.1.5", "source-map-support": "0.5.19", "typescript": "5.5.4" }, "scripts": { "deps": "rm -rf ./node_modules bun.lockb && bun install", "clean": "rm -rf dist tmp tsconfig.tsbuildinfo", "typecheck": "tsc --noEmit", "compile": "tsc --outDir tmp && mkdir -p dist && cp -r tmp/source/* dist && rm -rf tmp", "test": "bun test", "ver:patch": "npm version patch && git push --follow-tags", "ver:minor": "npm version minor && git push --follow-tags", "ver:major": "npm version major && git push --follow-tags", "publish:stage": "cp package.json LICENSE README.md dist", "publish:preview": "bun publish:stage && cd dist && bun publish --dry-run && cd ..", "publish:patch": "run-s clean compile ver:patch publish:stage && cd dist && bun publish --access public && cd ..", "publish:minor": "run-s clean compile ver:minor publish:stage && cd dist && bun publish --access public && cd ..", "publish:major": "run-s clean compile ver:major publish:stage && cd dist && bun publish --access public && cd .." } }