-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "devcam",
"version": "0.1.0",
"description": "Webcam security monitoring with browser capture, motion detection, and remote access",
"keywords": [
"webcam",
"security",
"monitoring",
"motion-detection",
"media-recorder",
"getusermedia",
"mjpeg",
"live-streaming",
"hono",
"bun"
],
"type": "module",
"license": "MIT",
"author": "Arthur Ronconi <webarthur@gmail.com>",
"module": "src/index.ts",
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"tunnel": "ngrok http 3000"
},
"dependencies": {
"hono": "^4.7.4"
}
}