UNPKG

@bdcode/sms

Version:

Unified (BD) SMS Providers client package for all TS/JS applications

110 lines (109 loc) 2.82 kB
{ "name": "@bdcode/sms", "version": "1.0.4", "type": "module", "description": "Unified (BD) SMS Providers client package for all TS/JS applications", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "scripts": { "test": "echo \"Testing...\"", "lint": "pnpm exec biome check --write", "prepare": "pnpm exec husky", "clean": "rimraf dist", "build:js": "tsup", "build:types": "tsc --project tsconfig.types.json", "build": "pnpm run clean && pnpm run build:js && pnpm run build:types", "prebuild": "pnpm run clean", "prepublishOnly": "pnpm run build", "dev": "tsup --watch", "release": "semantic-release" }, "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" }, "./adapters/smsnetbd": { "import": "./dist/adapters/smsnetbd.mjs", "require": "./dist/adapters/smsnetbd.cjs", "types": "./dist/adapters/smsnetbd.d.ts" }, "./mod": { "import": "./dist/mod.mjs", "require": "./dist/mod.cjs", "types": "./dist/mod.d.ts" } }, "files": [ "dist", "./README.md", "./LICENSE", "./CHANGELOG.md" ], "keywords": [ "sms", "sms-gateway", "sms-sdk", "sms-provider", "bd-sms-sdk", "bd-sms", "bd-sms-gateway", "bd-sms-gateways", "node", "deno", "bun", "cloudflare-workers", "typescript", "javascript" ], "author": { "name": "CodeContinent", "email": "codecontinent@gmail.com", "url": "https://github.com/codecontinent" }, "license": "MIT", "packageManager": "pnpm@10.10.0", "dependencies": { "axios": "^1.11.0", "zod": "^4.0.14" }, "devDependencies": { "@biomejs/biome": "2.1.3", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.3", "@semantic-release/npm": "^12.0.2", "@semantic-release/release-notes-generator": "^14.0.3", "husky": "^9.1.7", "lint-staged": "^16.1.2", "rimraf": "^6.0.1", "semantic-release": "^24.2.7", "tsc-alias": "^1.8.16", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "lint-staged": { "*.{ts,js,json}": [ "pnpm exec biome check --write" ] }, "homepage": "https://github.com/codecontinent/bd-sms-gateways#readme", "repository": { "type": "git", "url": "git+https://github.com/codecontinent/bd-sms-gateways.git" }, "bugs": { "url": "https://github.com/codecontinent/bd-sms-gateways/issues" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" } }