UNPKG

chrome-cookie-extractor

Version:

Extract and decrypt Chrome cookies with curl integration - includes auth-curl command for authenticated requests

80 lines (79 loc) 2.23 kB
{ "name": "chrome-cookie-extractor", "version": "1.1.1", "description": "Extract and decrypt Chrome cookies with curl integration - includes auth-curl command for authenticated requests", "main": "dist/index.js", "bin": { "chrome-cookies": "dist/cli.js", "auth-curl": "dist/auth-curl.js" }, "scripts": { "start": "node dist/cli.js", "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "type-check": "tsc --noEmit", "prepublishOnly": "npm test && npm run lint && npm run build", "prepack": "npm test && npm run lint && npm run build", "prepare": "husky install", "semantic-release": "semantic-release" }, "keywords": [ "chrome", "cookies", "curl", "browser", "authentication", "decrypt", "extraction", "cli", "auth-curl", "netscape", "json" ], "author": "Chrome Cookie Extractor", "repository": { "type": "git", "url": "https://github.com/pchuri/chrome-cookie-extractor.git" }, "homepage": "https://github.com/pchuri/chrome-cookie-extractor#readme", "bugs": { "url": "https://github.com/pchuri/chrome-cookie-extractor/issues" }, "license": "MIT", "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "dependencies": { "sqlite3": "^5.1.6", "chalk": "^4.1.2", "commander": "^9.4.1" }, "devDependencies": { "@types/node": "^18.11.9", "typescript": "^4.8.4", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^11.1.0", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^9.2.6", "@semantic-release/npm": "^11.0.2", "@semantic-release/release-notes-generator": "^12.1.0", "semantic-release": "^22.0.12", "jest": "^29.7.0", "@types/jest": "^29.5.8", "ts-jest": "^29.1.1", "eslint": "^8.54.0", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "husky": "^8.0.3", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^18.4.4" } }