fetchero
Version:
_A type-safe, proxy-based HTTP & GraphQL client for modern applications._
89 lines (88 loc) • 1.76 kB
JSON
{
"version": "0.1.5",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"keywords": [
"fetch",
"axios",
"http-client",
"graphql-client",
"rest-client",
"api-client",
"http",
"graphql",
"rest",
"typescript",
"proxy",
"chainable-api",
"interceptors",
"request-builder",
"fluent-api",
"api-wrapper",
"fetch-wrapper",
"graphql-query-builder",
"dynamic-endpoints"
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "fetchero",
"author": "abuldevx",
"module": "dist/fetchero.esm.js",
"size-limit": [
{
"path": "dist/fetchero.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/fetchero.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"cross-fetch": "^4.1.0",
"husky": "^9.1.7",
"size-limit": "^11.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^3.9.10"
},
"dependencies": {
"axios": "^1.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/abuldevx/fetchero"
},
"bugs": {
"url": "https://github.com/abuldevx/fetchero/issues"
},
"homepage": "https://github.com/abuldevx/fetchero#readme"
}