UNPKG

hr-sdk

Version:

A JavaScript library for Highrise bot.

46 lines (45 loc) 1.06 kB
{ "name": "hr-sdk", "version": "0.1.1", "description": "A JavaScript library for Highrise bot.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "files": [ "dist", "LICENCE", "README.md" ], "scripts": { "build:cjs": "tsc --project tsconfig.cjs.json", "build:esm": "tsc --project tsconfig.esm.json", "build": "npm run build:cjs && npm run build:esm", "prepare": "npm run build", "prepublishOnly": "npm run build" }, "keywords": [ "highrise", "highrise-js-sdk", "highrise-sdk", "chatbot", "sdk", "hr-sdk" ], "author": "Gyanendra Kumar", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/GauravGhost/hr-sdk.git" }, "devDependencies": { "@types/node": "^22.4.1", "@types/ws": "^8.5.12", "ts-node": "^10.9.2", "typescript": "^5.5.4" }, "dependencies": { "axios": "^1.7.4", "chalk": "^5.3.0", "ws": "^8.18.0" } }