spb/social-runtime-crawler
Public
TypeScript 91.8%
HTML 3.2%
JavaScript 3%
SQL 1.4%
CSS 0.7%
1{2 "name": "social-runtime-crawler",3 "version": "0.1.0",4 "private": true,5 "description": "Social Runtime Crawler — browser-native, self-learning crawler that mines the observable runtime of social applications.",6 "type": "module",7 "packageManager": "pnpm@11.1.2",8 "engines": {9 "node": ">=22"10 },11 "scripts": {12 "src": "tsx apps/worker/src/cli.ts",13 "login": "tsx apps/worker/src/cli.ts login",14 "crawl": "tsx apps/worker/src/cli.ts crawl",15 "learn": "tsx apps/worker/src/cli.ts learn",16 "replay": "tsx apps/worker/src/cli.ts replay",17 "db:migrate": "tsx packages/storage/src/migrate.ts",18 "typecheck": "tsc -p tsconfig.json --noEmit",19 "test": "vitest run",20 "test:watch": "vitest",21 "api": "tsx apps/api/src/server.ts",22 "dashboard:dev": "pnpm --filter @src/dashboard dev",23 "dashboard:build": "pnpm --filter @src/dashboard build",24 "dashboard:start": "pnpm --filter @src/dashboard start"25 },26 "devDependencies": {27 "@types/node": "^24.0.0",28 "tsx": "^4.20.0",29 "typescript": "^5.9.3",30 "vitest": "^3.2.0"31 }32}33