seogeneratorserver/package.json
StillHammer dbf1a3de8c Add technical plan for multi-format export system
Added plan.md with complete architecture for format-agnostic content generation:
- Support for Markdown, HTML, Plain Text, JSON formats
- New FormatExporter module with neutral data structure
- Integration strategy with existing ContentAssembly and ArticleStorage
- Bonus features: SEO metadata generation, readability scoring, WordPress Gutenberg format
- Implementation roadmap with 4 phases (6h total estimated)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-18 16:14:29 +08:00

45 lines
1.9 KiB
JSON

{
"name": "seo-generator-server",
"version": "1.0.0",
"description": "Hello World SEO Generator",
"main": "server.js",
"scripts": {
"start": "node server.js",
"manual": "node server.js --mode=manual",
"auto": "node server.js --mode=auto",
"dev": "node server.js",
"test:llm": "cross-env TEST_LLM_HOOKS=1 node --test tests/llm/*.test.js",
"test:smoke": "node --test tests/smoke/*.test.js",
"test:content": "node --test tests/content/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"test:all": "node tests/test-runner.js",
"test:light": "node tests/test-runner-light.js",
"test:basic": "node --test tests/basic-validation.test.js",
"test:all-simple": "npm run test:smoke && npm run test:llm && npm run test:content && npm run test:integration",
"test:systematic": "node tests/runners/SystematicTestRunner.js",
"test:systematic:quick": "node tests/runners/SystematicTestRunner.js --quick",
"test:generate": "node tests/systematic/ModuleTestGenerator.js",
"test:dashboard": "node tests/dashboard/TestDashboardServer.js",
"test:ai-validation": "node -e \"const {AIContentValidator} = require('./tests/validators/AIContentValidator'); AIContentValidator.quickValidate('Test de validation rapide du contenu généré automatiquement par IA').then(r => console.log('Validation:', r))\"",
"test:validate-system": "node tests/test-validation-complete.js"
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"google-auth-library": "^10.3.0",
"google-spreadsheet": "^5.0.2",
"googleapis": "^126.0.1",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.6",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"undici": "^7.15.0",
"ws": "^8.18.3"
},
"devDependencies": {
"cross-env": "^10.0.0"
}
}