- Created core modules: `ai-analyzer`, `core-parser`, and `job-search-parser`. - Implemented LinkedIn and job search parsers with integrated AI analysis. - Added CLI tools for AI analysis and job parsing. - Included comprehensive README files for each module detailing usage and features. - Established a `.gitignore` file to exclude unnecessary files. - Introduced sample data for testing and demonstration purposes. - Set up package.json files for dependency management across modules. - Implemented logging and error handling utilities for better debugging and user feedback.
55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
JSON
{
|
|
"name": "job-market-intelligence",
|
|
"version": "1.0.0",
|
|
"description": "Job Market Intelligence Platform - Modular parsers for comprehensive job market insights with built-in AI analysis",
|
|
"main": "linkedin-parser/index.js",
|
|
"scripts": {
|
|
"test": "node test/all-tests.js",
|
|
"test:location-utils": "node test/location-utils.test.js",
|
|
"test:ai-analyzer": "node test/ai-analyzer.test.js",
|
|
"demo": "node demo.js",
|
|
"demo:ai-analyzer": "node ai-analyzer/demo.js",
|
|
"demo:linkedin-parser": "node linkedin-parser/demo.js",
|
|
"demo:job-search-parser": "node job-search-parser/demo.js",
|
|
"demo:all": "npm run demo && npm run demo:ai-analyzer && npm run demo:linkedin-parser && npm run demo:job-search-parser",
|
|
"start": "node linkedin-parser/index.js",
|
|
"start:linkedin": "node linkedin-parser/index.js",
|
|
"start:jobs": "node job-search-parser/index.js",
|
|
"start:linkedin-no-ai": "node linkedin-parser/index.js --no-ai",
|
|
"install:playwright": "npx playwright install chromium"
|
|
},
|
|
"keywords": [
|
|
"job-market",
|
|
"intelligence",
|
|
"linkedin",
|
|
"scraper",
|
|
"ai-analysis",
|
|
"data-intelligence",
|
|
"market-research",
|
|
"automation",
|
|
"playwright",
|
|
"ollama",
|
|
"openai"
|
|
],
|
|
"author": "Job Market Intelligence Team",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"ai-analyzer": "file:./ai-analyzer",
|
|
"core-parser": "file:./core-parser",
|
|
"csv-parser": "^3.2.0",
|
|
"dotenv": "^17.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/your-username/job-market-intelligence.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/your-username/job-market-intelligence/issues"
|
|
},
|
|
"homepage": "https://github.com/your-username/job-market-intelligence#readme"
|
|
}
|