-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) Β· 1.72 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) Β· 1.72 KB
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
{
"name": "video-to-frames",
"version": "1.3.1",
"description": "ε½±ηεε²ε·₯ε
·",
"author": "PSheon",
"scripts": {
"clean": "rimraf output/stage*/*.jpg output/stage*/*.json output/stage*/*.mp4",
"format": "prettier --write \"src/**/*.js\"",
"dev": "NODE_ENV=development ts-node -C ttypescript src/index.ts",
"start": "NODE_ENV=production node dist/index.js",
"build": "rimraf dist && ttsc -p tsconfig.build.json",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest --coverage",
"docker:build": "docker build -t video-to-frames .",
"docker:init": "docker run -v $(pwd)/input:/opt/input -v $(pwd)/output/stage-split:/opt/output/stage-split -v $(pwd)/output/stage-inference:/opt/output/stage-inference --name video-to-frames video-to-frames",
"docker:run": "docker start -i video-to-frames"
},
"dependencies": {
"@tensorflow-models/posenet": "^2.2.2",
"@tensorflow/tfjs": "^3.6.0",
"@tensorflow/tfjs-node": "^3.6.1",
"ajv": "^8.5.0",
"canvas": "^2.8.0",
"chalk": "^4.1.1",
"combine-json": "^1.0.0",
"config": "^3.3.6",
"ffbinaries": "^1.1.4",
"file-type": "^16.5.0",
"fluent-ffmpeg": "^2.1.2",
"js-event-bus": "^1.1.0",
"kalman-filter": "^1.9.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"ora": "^5.4.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/config": "^0.0.38",
"@types/fluent-ffmpeg": "^2.1.17",
"@types/jest": "^26.0.23",
"@types/rimraf": "^3.0.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.4"
}
}