Files
wehub-resource-sync 4ce4204b6c
CI / Lint (push) Failing after 2s
CI / Build (push) Has been skipped
SDK CI / PHP SDK (push) Failing after 1s
Split PHP SDK / PHP SDK tests (push) Failing after 1s
CI / Test (push) Failing after 1s
CI / Dashboard (push) Failing after 0s
SDK CI / JavaScript SDK (push) Failing after 0s
SDK CI / Python SDK (push) Failing after 2s
SDK CI / Java SDK (push) Failing after 1s
Split PHP SDK / Mirror sdk/php -> rmyndharis/openwa-php (push) Has been skipped
CI / Test (PostgreSQL migrations) (push) Failing after 7m47s
CI / Docker Build (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:24:08 +08:00

54 lines
1.5 KiB
JSON

{
"name": "@rmyndharis/openwa",
"version": "0.1.0",
"description": "Official JavaScript/TypeScript SDK for OpenWA WhatsApp API Gateway",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && node -e \"require('fs').writeFileSync('dist/cjs/package.json',JSON.stringify({type:'commonjs'}))\"",
"prepublishOnly": "npm run build",
"dev": "tsc -p tsconfig.esm.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node scripts/smoke.mjs",
"typecheck": "tsc --noEmit"
},
"keywords": [
"whatsapp",
"api",
"sdk",
"openwa",
"gateway"
],
"author": "OpenWA Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rmyndharis/OpenWA",
"directory": "sdk/javascript"
},
"engines": {
"node": ">=18"
},
"sideEffects": false,
"peerDependencies": {},
"devDependencies": {
"typescript": "^5.7.3",
"vitest": "^2.1.0"
}
}