-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 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
48
{
"name": "@monyone/ts-fragmenter",
"version": "0.0.4",
"main": "dist/index.js",
"types": "d.ts/index.d.ts",
"files": [
"dist/**/*",
"d.ts/**/*",
"src/**/*",
"tsconfig.json"
],
"author": "monyone <[email protected]>",
"description": "convert mpegts to fragments for ll-hls",
"keywords": [
"mpegts"
],
"repository": {
"type": "git",
"url": "https://github.com/monyone/node-ts-fragmenter"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"format": "prettier --write src/**/*.ts",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint src/**/*.ts",
"lint:prettier": "prettier --check src/**/*.ts",
"clean": "rimraf dist d.ts"
},
"devDependencies": {
"@types/node": "12",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"dependencies": {
"arib-mpeg2ts-parser": "^3.0.15"
}
}