http-client/package.json
James Brumond 07138d4111
Some checks failed
Build and test / build-and-test (18.x) (push) Failing after 10s
Build and test / build-and-test (20.x) (push) Failing after 40s
migrate basic http client and response cache into library repo
2023-08-21 13:22:23 -07:00

29 lines
644 B
JSON

{
"name": "@js/http-client",
"version": "1.0.0",
"description": "HTTP client utilities",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"tsc": "tsc --build",
"clean": "rm -rf ./build"
},
"publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/js/npm/"
},
"repository": {
"type": "git",
"url": "https://gitea.jbrumond.me/js/http-client.git"
},
"engines": {
"node": ">=18"
},
"author": "James Brumond <https://jbrumond.me>",
"license": "ISC",
"devDependencies": {
"@js/types": "^0.1.0",
"@types/node": "^20.5.1",
"typescript": "^5.1.3"
}
}