-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "video-annotator",
"version": "1.0.0",
"description": "Node script for encoding dodgeball matches filmed with a GoPro",
"main": "index.js",
"repository": "https://github.com/hedgepigdaniel/video-annotator.git",
"author": "Daniel Playfair Cal <daniel.playfair.cal@gmail.com>",
"license": "MIT",
"scripts": {
"prettify": "prettier --write '**/*'",
"start": "babel-node -x .ts src/cli.ts",
"watch": "babel -x .ts -d dist --source-maps both --watch src"
},
"dependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@types/fluent-ffmpeg": "^2.1.18",
"@types/promise-queue": "^2.2.0",
"commander": "^8.1.0",
"core-js": "^3.17.2",
"fluent-ffmpeg": "^2.1.2",
"glob": "^7.1.7",
"prettier": "^2.3.2",
"promise-queue": "^2.2.5",
"regenerator-runtime": "^0.13.9",
"source-map-support": "^0.5.19",
"typescript": "^4.4.2"
}
}