mirror of
https://github.com/LuanRT/googlevideo.git
synced 2026-06-13 08:42:31 +00:00
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"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"
|
|
}
|
|
} |