UNPKG

@simplyhomes/sos-client

Version:

Client SDK for SimplyHomes SOS API

52 lines (51 loc) 1.49 kB
{ "name": "@simplyhomes/sos-client", "version": "2.5.16", "main": "./dist/index.js", "types": "./dist/index.d.ts", "module": "./dist/esm/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/index.js" } }, "scripts": { "clean": "rimraf ./dist", "build": "npm run clean && npm run build:types && npm run build:cjs && npm run build:esm", "build:types": "tsc --emitDeclarationOnly", "build:cjs": "esbuild ./index.ts --bundle --platform=node --format=cjs --outfile=dist/index.js --legal-comments=inline", "build:esm": "esbuild ./index.ts --bundle --platform=browser --format=esm --outfile=dist/esm/index.js --legal-comments=inline", "watch": "esbuild ./index.ts --bundle --platform=node --outfile=dist/index.js --watch", "test": "echo \"Error: no test specified\" && exit 1", "push": "node push.mjs" }, "author": "", "license": "ISC", "description": "Client SDK for SimplyHomes SOS API", "dependencies": { "axios": "^1.8.4" }, "devDependencies": { "@types/node": "^20.11.19", "esbuild": "^0.25.4", "rimraf": "^6.0.1", "typescript": "^5.8.3" }, "peerDependencies": { "axios": "^1.8.4" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*" ], "keywords": [ "simplyhomes", "sos", "api-client", "sdk" ] }