-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.56 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "googlevideo",
"version": "4.0.4",
"description": "A collection of modules for working with YouTube's proprietary video streaming protocols (UMP/SABR).",
"type": "module",
"scripts": {
"watch": "npx tspc --watch",
"lint": "npx eslint ./src/**/*.ts",
"lint:fix": "npx eslint --fix ./src/**/*.ts",
"clean": "npx rimraf ./dist ./protos/generated",
"build": "npm run clean && npm run lint && npm run build:proto && npm run build:esm",
"build:esm": "npx tspc",
"build:proto": "node ./dev-scripts/generate-proto.mjs",
"build:docs": "typedoc",
"test": "vitest run --reporter verbose",
"test:watch": "vitest",
"prepare": "npm run build"
},
"author": "LuanRT <[email protected]> (https://github.com/LuanRT)",
"funding": [
"https://github.com/sponsors/LuanRT"
],
"keywords": [
"UMP",
"SABR",
"Google",
"YouTube"
],
"license": "MIT",
"exports": {
"./ump": {
"types": "./dist/src/exports/ump.d.ts",
"import": "./dist/src/exports/ump.js",
"default": "./dist/src/exports/ump.js"
},
"./sabr-streaming-adapter": {
"types": "./dist/src/exports/sabr-streaming-adapter.d.ts",
"import": "./dist/src/exports/sabr-streaming-adapter.js",
"default": "./dist/src/exports/sabr-streaming-adapter.js"
},
"./sabr-stream": {
"types": "./dist/src/exports/sabr-stream.d.ts",
"import": "./dist/src/exports/sabr-stream.js",
"default": "./dist/src/exports/sabr-stream.js"
},
"./protos": {
"types": "./dist/src/exports/protos.d.ts",
"import": "./dist/src/exports/protos.js",
"default": "./dist/src/exports/protos.js"
},
"./utils": {
"types": "./dist/src/exports/utils.d.ts",
"import": "./dist/src/exports/utils.js",
"default": "./dist/src/exports/utils.js"
},
"./shared-types": {
"types": "./dist/src/types/shared.d.ts"
}
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@stylistic/eslint-plugin": "^2.6.4",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"ts-patch": "^3.3.0",
"ts-proto": "^2.2.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@bufbuild/protobuf": "^2.0.0"
},
"bugs": {
"url": "https://github.com/LuanRT/GoogleVideo/issues"
},
"homepage": "https://github.com/LuanRT/GoogleVideo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LuanRT/GoogleVideo.git"
}
}