mirror of
https://github.com/ad1217/PrinterStatus
synced 2024-11-14 20:23:49 -05:00
31 lines
736 B
JSON
31 lines
736 B
JSON
{
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/express-ws": "^3.0.4",
|
|
"@types/fluent-ffmpeg": "^2.1.24",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/mp4frag": "^0.6.4",
|
|
"@types/node": "^20.9.3",
|
|
"@types/node-fetch": "^2.6.9",
|
|
"@types/ws": "^8.5.10",
|
|
"tsx": "^4.2.0",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"express-ws": "^5.0.2",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"js-yaml": "^4.1.0",
|
|
"mp4frag": "^0.6.1",
|
|
"node-fetch": "^3.3.2",
|
|
"ws": "^8.14.2"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run dev",
|
|
"dev": "tsx watch --clear-screen=false ./src/server.ts",
|
|
"build": "tsc",
|
|
"serve": "node dist/server.js"
|
|
}
|
|
}
|