@elusion-sdk/briq
Version:
A modern TypeScript SDK for Briq SMS API integration
88 lines (87 loc) • 2.42 kB
JSON
{
"name": "@elusion-sdk/briq",
"version": "1.2.5",
"description": "A modern TypeScript SDK for Briq SMS API integration",
"type": "module",
"main": "./dist/index.js",
"module": "dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run build:clean && bun run build:cjs && bun run build:esm && bun run build:types",
"build:clean": "rm -rf dist",
"build:cjs": "bun build src/index.ts --outdir dist --target node --format cjs --outfile index.js",
"build:esm": "bun build src/index.ts --outdir dist/esm --target node --format esm",
"build:types": "tsc --project tsconfig.build.json",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"type-check": "tsc --noEmit",
"prepublishOnly": "bun run lint && bun run type-check && bun run build && bun run test",
"release": "semantic-release"
},
"keywords": [
"sms",
"briq",
"elusion",
"messaging",
"notifications",
"typescript",
"sdk",
"api",
"communications",
"text-messaging",
"bulk-sms"
],
"author": "Elusion Hub <elusion.lab@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elusionhub/briq-sdk.git"
},
"homepage": "https://github.com/elusionhub/briq-sdk#readme",
"bugs": {
"url": "https://github.com/elusionhub/briq-sdk/issues"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"dotenv": "^16.5.0"
}
}