chore: add project configuration

This commit is contained in:
2026-06-09 17:38:59 +01:00
parent 680ad98e10
commit f2ccfbbe16
2 changed files with 16 additions and 1 deletions
+5 -1
View File
@@ -17,6 +17,10 @@ Phase 0 - Repository Setup
- Task 0.1 — Create repository skeleton ✅
## In Progress
- Task 0.2 — package.json created, dependencies not yet installed
## Next Task
Task 0.2 — Add package.json and dependencies
Task 0.2 (continued) — Add package.json and dependencies
+11
View File
@@ -0,0 +1,11 @@
{
"name": "chatgpt-mcp",
"version": "0.1.0",
"description": "A local MCP server that allows Claude Code to ask ChatGPT for focused second-opinion help.",
"private": true,
"type": "module",
"scripts": {
"start": "node src/server.js",
"test": "echo \"No tests yet\""
}
}