{ "name": "linkedout-parser", "version": "1.0.0", "description": "LinkedIn posts parser using ai-analyzer core", "main": "index.js", "scripts": { "start": "node index.js", "start:no-ai": "node index.js --no-ai", "start:headless": "node index.js --headless=true", "start:visible": "node index.js --headless=false", "start:no-location": "node index.js --no-location", "start:custom": "node index.js --keyword=\"layoff,downsizing\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "demo": "node demo.js", "analyze": "node ../ai-analyzer/cli.js --dir=results", "analyze:latest": "node ../ai-analyzer/cli.js --latest --dir=results", "analyze:layoff": "node ../ai-analyzer/cli.js --latest --dir=results --context=\"layoff analysis\"", "analyze:trends": "node ../ai-analyzer/cli.js --latest --dir=results --context=\"job market trends\"", "help": "node index.js --help", "install:playwright": "npx playwright install chromium" }, "keywords": [ "linkedin", "parser", "scraper", "ai" ], "author": "", "license": "ISC", "type": "commonjs", "dependencies": { "ai-analyzer": "file:../ai-analyzer", "core-parser": "file:../core-parser", "dotenv": "^17.0.0", "csv-parser": "^3.2.0" }, "devDependencies": { "jest": "^29.0.0" } }