-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 991 Bytes
/
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
{
"name": "@oscnord/get-video-resolution",
"version": "0.2.0",
"description": "Get the dimensions (width and height) of a video. Can be a local video or a HLS stream",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oscnord/get-video-resolution.git"
},
"author": "Oscar Nord",
"license": "MIT",
"bugs": {
"url": "https://github.com/oscnord/get-video-resolution/issues"
},
"keywords": [
"ffprobe",
"video",
"resolution",
"hls",
"dash"
],
"homepage": "https://github.com/oscnord/get-video-resolution#readme",
"devDependencies": {
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"typescript": "^4.6.4"
}
}