UNPKG

chromium-helper

Version:

CLI tool for searching and exploring Chromium source code via Google's official APIs

61 lines (60 loc) 1.38 kB
{ "name": "chromium-helper", "version": "1.4.0", "description": "CLI tool for searching and exploring Chromium source code via Google's official APIs", "type": "module", "main": "dist/index.js", "bin": { "chromium-helper": "dist/index.js", "ch": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "test": "node --test", "prepublishOnly": "npm run build" }, "keywords": [ "cli", "chromium", "code-search", "gerrit", "blink", "google", "search", "developer-tools" ], "author": "Chromium Helper CLI Contributors", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/hjanuschka/chromium-helper.git", "directory": "chromium-helper-cli" }, "bugs": { "url": "https://github.com/hjanuschka/chromium-helper/issues" }, "homepage": "https://github.com/hjanuschka/chromium-helper/tree/main/chromium-helper-cli#readme", "dependencies": { "chalk": "^5.3.0", "cheerio": "^1.1.0", "commander": "^12.0.0", "node-fetch": "^3.3.2", "playwright": "^1.52.0", "table": "^6.8.0" }, "devDependencies": { "@types/node": "^20.0.0", "typescript": "^5.0.0" }, "engines": { "node": ">=18" }, "files": [ "dist/", "README.md", "LICENSE", "logo.png" ] }