-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 997 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 997 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": "camera-interface",
"version": "1.0.0",
"description": "Typescript interface for Pi-Eye camera",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "eslint .",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pi-Eye/camera-interface.git"
},
"author": "Bwu1324",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Pi-Eye/camera-interface/issues"
},
"homepage": "https://github.com/Pi-Eye/camera-interface#readme",
"dependencies": {
"@types/node": "^18.11.9",
"file-writer-types": "github:Pi-Eye/file-writer-types",
"node-stream-processor-types": "github:Pi-Eye/node-stream-processor-types",
"notification-handler": "github:Pi-Eye/notification-handler",
"pi-camera-connect": "^0.3.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"eslint": "^8.27.0",
"typed-emitter": "^2.1.0",
"typescript": "^4.8.4"
}
}