server-state-sync
Version:
State synchronization between multiple clients
47 lines (46 loc) • 954 B
JSON
{
"name": "server-state-sync",
"version": "1.0.5",
"description": "State synchronization between multiple clients",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"start": "ts-node src/index.ts",
"test": "jest",
"coverage": "jest --coverage"
},
"author": "Jonathan Rydholm",
"license": "ISC",
"files": [
"dist"
],
"keywords": [
"state",
"sync",
"share",
"server-side",
"broadcast",
"live",
"updates"
],
"repository": {
"type": "git",
"url": "https://github.com/jonathanrydholm/server-state-sync"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"uuid": "^8.3.2",
"ws": "^7.4.3"
}
}