mnotify-ts-sdk
Version:
Third-Party TypeScript SDK for mNotify BMS API
60 lines • 1.43 kB
JSON
{
"name": "mnotify-ts-sdk",
"version": "1.0.1",
"description": "Third-Party TypeScript SDK for mNotify BMS API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"mnotify",
"africa",
"bms",
"sdk",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/adjanour/mnotify-ts-sdk.git"
},
"author": "Adjanour adjanour@icloud.com",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.9.0",
"axios-mock-adapter": "^2.1.0",
"dotenv": "^16.5.0",
"zod": "^3.25.56"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@jest/types": "30.0.0-beta.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"eslint": "^9.28.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typedoc": "^0.28.5",
"typedoc-plugin-missing-exports": "^4.0.0",
"typedoc-plugin-zod": "^1.4.1",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsc",
"watch": "tsc",
"test:watch": "jest --watch",
"test": "jest",
"lint": "eslint src test --ext .ts",
"format": "prettier --write src test",
"prepublish": "npm run build",
"example:sms": "ts-node examples/sendSMS.ts",
"docs": "typedoc",
"docs:serve": "pnpm dlx serve docs"
}
}