@hirall/client
Version:
Official TypeScript/JavaScript client for Hirall - Backend-as-a-Service
59 lines (58 loc) • 1.3 kB
JSON
{
"name": "@hirall/client",
"version": "1.0.0",
"description": "Official TypeScript/JavaScript client for Hirall - Backend-as-a-Service",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest",
"lint": "eslint src",
"prepublishOnly": "npm run build"
},
"keywords": [
"hirall",
"baas",
"backend",
"database",
"storage",
"auth",
"realtime",
"postgresql",
"supabase-alternative"
],
"author": "Hirall Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hirall/hirall-js"
},
"bugs": {
"url": "https://github.com/hirall/hirall-js/issues"
},
"homepage": "https://hirall.io",
"devDependencies": {
"@types/node": "^20.10.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4",
"eslint": "^8.56.0"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"ws": "^8.16.0"
}
}