{
"name": "@zerodds/wasm",
"version": "0.0.0",
"description": "ZeroDDS TypeScript binding for the browser (WASM XCDR2 codec + DDS-TS Annex C DCPS-over-WebSocket runtime).",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"pkg-web/",
"README.md"
],
"scripts": {
"build:wasm": "wasm-pack build --release --target web --out-dir pkg-web && wasm-pack build --release --target nodejs --out-dir pkg-node",
"build:ts": "tsc -p tsconfig.json",
"build": "npm run build:ts",
"test": "node --test test/smoke.test.mjs && node --test --import tsx test/dcps.test.ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"ws": "^8.18.0"
},
"keywords": [
"dds",
"wasm",
"typescript",
"xcdr2",
"websocket",
"browser",
"pub-sub"
],
"author": "ZeroDDS Contributors <hello@zerodds.org>",
"license": "Apache-2.0",
"homepage": "https://zerodds.org",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}