everydaytok/agentq-core-logics
0
1{2 "name": "opportunity-engine",3 "version": "0.2.0",4 "description": "Autonomous research engine: Hunter mode (discover opportunities) + Validator mode (stress-test an idea), backed by deterministic scoring and adversarial Gemini agents.",5 "main": "app.js",6 "type": "commonjs",7 "engines": {8 "node": ">=20"9 },10 "scripts": {11 "start": "node app.js",12 "dev": "node --watch app.js",13 "test": "npm run test:scoring && npm run test:ratelimit",14 "test:scoring": "node test/scoring.test.js",15 "test:ratelimit": "node test/rateLimiter.test.js"16 },17 "dependencies": {18 "@google/genai": "^2.23.0",19 "better-sqlite3": "^11.3.0",20 "cors": "^2.8.5",21 "dotenv": "^16.4.5",22 "express": "^4.19.2",23 "node-fetch": "^2.7.0",24 "uuid": "^9.0.1",25 "scrapebadger": "^0.8.0"26 }27}28 