Socio/core/package.json
2023-02-28 11:05:38 +02:00

47 lines
1 KiB
JSON

{
"name": "socio",
"version": "0.6.3",
"description": "A WebSocket based realtime duplex Front-End and Back-End syncing API paradigm framework.",
"main": "./dist/core.js",
"type": "module",
"module": "core.ts",
"scripts": {
"build": "tsc",
"pub": "npm run build && npm publish",
"watch": "tsc --watch",
"admin": "node admin2.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"./dist"
],
"types": "./dist/*.d.ts",
"keywords": [
"database",
"sync",
"realtime",
"live",
"SQL",
"query",
"frontend",
"websocket",
"reactive",
"rtc"
],
"author": "Rolands Laucis",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Rolands-Laucis/Socio.git"
},
"homepage": "https://github.com/Rolands-Laucis/Socio#readme",
"dependencies": {
"@types/node": "^18.11.17",
"base64-js": "^1.5.1",
"magic-string": "^0.26.7",
"ws": "^8.9.0"
},
"devDependencies": {
"@types/ws": "^8.5.3"
}
}