Initial commit

This commit is contained in:
2025-10-27 11:17:29 +01:00
commit f88d870db5
14 changed files with 4423 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "fundamnit",
"version": "0.0.1",
"type": "module",
"description": "This is an example of a Crawlee project.",
"dependencies": {
"crawlee": "^3.0.0",
"patchright": "^1.56.1",
"playwright": "*",
"zod": "^4.1.12"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
"tsx": "^4.4.0",
"typescript": "~5.9.0",
"@types/node": "^22.0.0"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"build": "tsc",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
},
"author": "It's not you it's me",
"license": "ISC"
}