-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "googlevideo",
"version": "2.0.0",
"description": "A set of utilities for working with Google Video APIs.",
"main": "dist/index.js",
"type": "module",
"types": "./dist/src/index.d.ts",
"module": "./dist/src/index.js",
"scripts": {
"watch": "npx tsc --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 tsc",
"build:proto": "node ./dev-scripts/generate-proto.mjs",
"prepare": "npm run build"
},
"author": "LuanRT <luan.lrt4@gmail.com> (https://github.com/LuanRT)",
"funding": [
"https://github.com/sponsors/LuanRT"
],
"keywords": [
"UMP",
"SABR",
"Google",
"YouTube"
],
"license": "MIT",
"exports": {
".": {
"node": {
"import": "./dist/src/index.js"
},
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"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-proto": "^2.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"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"
}
}