theater-client
Version:
TypeScript client library for Theater actor system TCP protocol
46 lines (45 loc) • 928 B
JSON
{
"name": "theater-client",
"version": "0.1.1",
"description": "TypeScript client library for Theater actor system TCP protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": "Colin Rozzi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/colinrozzi/theater-client.git"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"type-check": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.0"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
},
"keywords": [
"theater",
"actor",
"tcp",
"client",
"protocol",
"typescript"
]
}