UNPKG

chimi-scraper

Version:

A TypeScript library for scraping game data from itch.io with a clean, scalable architecture

55 lines 1.3 kB
{ "name": "chimi-scraper", "version": "1.0.0", "description": "A TypeScript library for scraping game data from itch.io with a clean, scalable architecture", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts" }, "keywords": [ "itch.io", "scraper", "games", "typescript", "api", "indie-games", "game-data", "web-scraping" ], "author": "97x <elliott.brandon1234@gmail.com>", "repository": { "type": "git", "url": "https://github.com/97x/chimi.git" }, "bugs": { "url": "https://github.com/97x/chimi/issues" }, "homepage": "https://github.com/97x/chimi#readme", "license": "MIT", "dependencies": { "axios": "^1.6.2", "cheerio": "^1.0.0-rc.12" }, "devDependencies": { "@types/express": "^4.17.21", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "eslint": "^8.54.0", "express": "^4.18.2", "jest": "^29.7.0", "prettier": "^3.1.0", "ts-node": "^10.9.0", "typescript": "^5.3.0" } }