zdata-client
Version:
TypeScript client library for zdata backend API with authentication and full CRUD operations
68 lines • 1.64 kB
JSON
{
"name": "zdata-client",
"version": "1.1.0",
"description": "TypeScript client library for zdata backend API with authentication and full CRUD operations",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rimraf dist",
"dev": "tsc --watch",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"api-client",
"typescript",
"rest-client",
"http-client",
"crud",
"authentication",
"zdata",
"backend-client",
"generic-types",
"data-source",
"type-safe"
],
"author": "zdata-client",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zdata/zdata-client.git"
},
"bugs": {
"url": "https://github.com/zdata/zdata-client/issues"
},
"homepage": "https://github.com/zdata/zdata-client#readme",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}