-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "picamera.js",
"main": "dist/picamera.js",
"types": "build/index.d.ts",
"module": "dist/picamera.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TzuHuanTai/PiCamera.js.git"
},
"bugs": {
"url": "https://github.com/TzuHuanTai/PiCamera.js"
},
"scripts": {
"build": "node build.js && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"raspberry",
"pi",
"webrtc",
"camera",
"p2p"
],
"author": "Tzu Huan Tai",
"license": "AGPL-3.0-only",
"description": "WebRTC connection for Raspberry Pi Camera",
"files": [
"dist/",
"build/",
"src/",
"LICENSE"
],
"exports": {
".": {
"browser": {
"import": "./dist/picamera.esm.js",
"default": "./dist/picamera.min.js"
},
"default": "./build/index.js"
},
"./package.json": "./package.json",
"./*.map": "./build/*.js.map",
"./dist/*": "./dist/*.js",
"./*": "./build/*.js"
},
"devDependencies": {
"esbuild": "^0.24.0",
"typescript": "^5.6.3"
},
"dependencies": {
"mqtt": "^5.10.1"
}
}