gphotos-scraper
Version:
A tool to extract public url and metadata from shared album
56 lines (55 loc) • 1.31 kB
JSON
{
"name": "gphotos-scraper",
"version": "3.0.0",
"description": "A tool to extract public url and metadata from shared album",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gphotos-scraper": "./dist/cli.js"
},
"private": false,
"scripts": {
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"build": "tsc",
"build:watch": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"start": "node ./dist/cli.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmsalazardev/gphotos-scraper.git"
},
"license": "MIT",
"author": {
"name": "José Miguel Salazar",
"email": "jmsalazardev@gmail.com"
},
"keywords": [
"google-photos",
"scraper"
],
"bugs": {
"url": "https://github.com/jmsalazardev/gphotos-scraper/issues"
},
"homepage": "https://github.com/jmsalazardev/gphotos-scraper#readme",
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@types/clear": "^0.1.2",
"@types/jsdom": "^16.2.14",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.2.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"axios": "^1.13.5",
"clear": "^0.1.0",
"commander": "^14.0.3",
"mime-types": "^3.0.2",
"p-limit": "^7.3.0"
}
}