Files
ToolsRtmpPush/package.json
2025-08-17 11:51:03 -04:00

25 lines
751 B
JSON

{
"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",
"ci-build": "bun run build:node && bun run build:browser",
"build:node": "bun build src/index.ts --outdir dist/node --target node --format esm --minify --production",
"build:browser": "bun build src/index.ts --outdir dist/browser --target browser --format esm --minify --production"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"publishConfig": {
"registry": "https://registry-node.techniker.me"
}
}