Spaces:
Runtime error
Runtime error
File size: 1,526 Bytes
46252cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | {
"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": "tsc --noEmit && 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"
}
}
|