read-browser-cookies
Version:
Node.js version of `--cookies-from-browser` from yt-dlp
77 lines (76 loc) • 2 kB
JSON
{
"name": "read-browser-cookies",
"version": "0.2.0",
"description": "Node.js version of `--cookies-from-browser` from yt-dlp",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"CHANGELOG.md"
],
"scripts": {
"test": "mocha",
"prepare": "husky install",
"test-cover": "nyc --reporter=lcov --reporter=text mocha",
"dev": "tsc -w --incremental",
"build": "rm -rf lib; rm tsconfig.tsbuildinfo; tsc",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/magicdawn/read-browser-cookies.git"
},
"keywords": [
"cookies-from-browser",
"browser-cookies",
"yt-dlp",
"chrome-cookies"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/read-browser-cookies/issues"
},
"homepage": "https://github.com/magicdawn/read-browser-cookies#readme",
"devDependencies": {
"@magicdawn/prettier-config": "^0.0.2",
"@swc/core": "^1.3.23",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.15",
"@types/psl": "^1.1.0",
"@types/should": "^13.0.0",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"should": "^13.2.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"packageManager": "pnpm@7.17.0",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,less,md}": [
"prettier --write"
]
},
"dependencies": {
"debug": "^4.3.4",
"execa": "^5.1.1",
"globby": "^11.1.0",
"keytar": "^7.9.0",
"lodash": "^4.17.21",
"psl": "^1.9.0",
"sqlite3": "^5.1.4"
}
}