package.json 418 B

12345678910111213141516
  1. {
  2. "name": "archives-of-nethys-scraper",
  3. "version": "1.0.0",
  4. "description": "A simple tool to gather datasets from archives of nethys",
  5. "scripts": {
  6. "scrape": "npx ts-node -T scraper.ts",
  7. "upload": "npx ts-node -T uploader.ts"
  8. },
  9. "author": "Luke Hagar",
  10. "license": "MIT",
  11. "dependencies": {
  12. "@elastic/elasticsearch": "^8.8.1",
  13. "dotenv": "^16.1.4",
  14. "sanitize-filename": "^1.6.3"
  15. }
  16. }