package.json 798 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "gpt-crawler",
  3. "version": "0.0.1",
  4. "type": "module",
  5. "description": "This is an example of a Crawlee project.",
  6. "dependencies": {
  7. "crawlee": "^3.0.0",
  8. "glob": "^10.3.10",
  9. "playwright": "*"
  10. },
  11. "devDependencies": {
  12. "@apify/tsconfig": "^0.1.0",
  13. "@types/node": "^20.0.0",
  14. "ts-node": "^10.8.0",
  15. "typescript": "^5.0.0"
  16. },
  17. "scripts": {
  18. "start": "npm run start:dev",
  19. "start:prod": "node dist/main.js",
  20. "start:dev": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only src/main.ts",
  21. "build": "tsc",
  22. "test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
  23. },
  24. "author": "It's not you it's me",
  25. "license": "ISC"
  26. }