Initial Commit

This commit is contained in:
2025-08-17 11:41:43 -04:00
commit a3078c13b1
10 changed files with 846 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@techniker-me/rtmp-push",
"version": "2025.0.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"publishConfig": {
"registry": "https://registry-node.techniker.me"
}
}