SPB Git forge
7commits 1branches 0releases
229.0 KBsize
maindefault branch
12 days agolast push
TypeScript 91.8% HTML 3.2% JavaScript 3% SQL 1.4% CSS 0.7%
1.1 KB · 33 lines json
Raw Blame History
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