mirror of
https://github.com/thib8956/tic-tac-toe-ws.git
synced 2026-03-24 14:37:56 +00:00
24 lines
510 B
JSON
24 lines
510 B
JSON
{
|
|
"name": "test-ws",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc && cp index.html dist/",
|
|
"build:watch": "tsc --watch && cp index.html dist/",
|
|
"start": "node dist/server.js",
|
|
"start:watch": "node --watch dist/server.js",
|
|
"serve": "python serve.py"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/ws": "^8.18.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.19.0"
|
|
}
|
|
}
|