- package.json: ESM module config - src/index.ts: Broadcast client factory with types, hooks - tsconfig.json: TypeScript configuration
22 lines
441 B
JSON
22 lines
441 B
JSON
{
|
|
"name": "@bytelyst/broadcast-client",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "Browser/React Native-safe broadcast messaging client for platform-service",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
}
|
|
}
|