prospector/package.json
Natalie 845f437cb5 docs: README + package.json reflect the implemented web/ operator PWA
The full coworker-replacement app is built in web/ (served by this repo's
NestJS backend), not the platform my/ surface. Document the six views and the
/prospector/* endpoints each uses, the shared-audit/human_owned/Life-opt-in
guarantees, and dev/build commands. Keep the platform my/ SSO vision as-is.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 07:58:45 -04:00

41 lines
1.2 KiB
JSON

{
"name": "@prospector/app",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Quinn Prospector — standalone AFK auto-send + operator app. NestJS backend + core engine in src/, own DB; web/ full operator PWA (triage/detail/queue/campaigns/reports/pastebin/control); @packages/mcp-prospector agent interface.",
"scripts": {
"build": "nest build",
"start": "node dist/main.js",
"start:dev": "nest start --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"workspaces": [
"@packages/mcp-prospector",
"web"
],
"dependencies": {
"@nestjs/common": "11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "11.1.11",
"@nestjs/platform-express": "11.1.11",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.2.5",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"pg": "^8.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "11.0.9",
"@nestjs/testing": "^11.1.12",
"@types/node": "^20.19.30",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}