0243284da0
- Deleted the Nginx configuration file for stream.graff.estate. - Updated bun.lock files in both client and session-server to include new dependencies and version updates. - Added 'tree-kill' dependency to session-server for improved process management. - Refactored process termination logic in session-server to utilize 'tree-kill' for reliable process termination.
19 lines
416 B
JSON
19 lines
416 B
JSON
{
|
|
"name": "strem.graff.tech-session-server",
|
|
"version": "1.0.50",
|
|
"module": "src/index.js",
|
|
"devDependencies": {
|
|
"bun-types": "latest"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"dev": "bun run --watch src/index.ts",
|
|
"build": "bun bun.build.ts",
|
|
"start": "bun ./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"got": "^14.4.9",
|
|
"tree-kill": "^1.2.2"
|
|
}
|
|
}
|