-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "node-camera",
"version": "1.1.0",
"description": "This `gphoto2` wrapper for Node.js enables you to capture images, bursts, timelapses or even video.",
"main": "build/index.js",
"scripts": {
"build": "rm -rf ./build && tsc",
"prepare": "yarn build",
"example": "ts-node examples/example.ts",
"burst": "ts-node examples/burst.ts",
"snap": "ts-node examples/snap.ts",
"list-cameras": "ts-node examples/list.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balgamat/node-camera.git"
},
"keywords": [
"javascript",
"typescript",
"node",
"gphoto2",
"camera",
"photo",
"video",
"timelapse",
"burst",
"DSLR",
"libgphoto2",
"image capture",
"camera configuration"
],
"author": "Matej Balga",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/balgamat/node-camera/issues"
},
"homepage": "https://github.com/balgamat/node-camera#readme",
"devDependencies": {
"@types/node": "^13.5.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.2"
}
}