-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "ring-timelapse-docker",
"version": "2.1.0",
"description": "Ring Timelapse creator as a Docker container",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"build-container": "npm run clean && docker build . -t wictorwilen/ring-timelapse:dev",
"build-container-latest": "npm run clean && docker build . -t wictorwilen/ring-timelapse:latest",
"sh": "docker -it wictorwilen/ring-timelapse:dev sh",
"snapshot": "node dist/snapshot",
"timelapse": "node dist/timelapse"
},
"author": "Wictor Wilén",
"maintainers": [
{
"name": "Wictor Wilén",
"email": "[email protected]",
"url": "http://www.wictorwilen.se"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wictorwilen/ring-timelapse.git"
},
"bugs": {
"url": "https://github.com/wictorwilen/ring-timelapse/issues"
},
"homepage": "https://github.com/wictorwilen/ring-timelapse",
"license": "MIT",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/lodash": "^4.14.202",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "16.3.1",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.21",
"ring-client-api": "^12.1.0"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/wictorwilen/"
}
}