/ package.json
package.json
 1  {
 2    "name": "auryn",
 3    "version": "0.1.0",
 4    "description": "MCP server exposing InterBrain's DreamNode system to AI agents",
 5    "type": "module",
 6    "main": "dist/index.js",
 7    "scripts": {
 8      "build": "tsc",
 9      "start": "node dist/index.js",
10      "dev": "tsc --watch"
11    },
12    "keywords": [
13      "mcp",
14      "interbrain",
15      "dreamnode",
16      "ai"
17    ],
18    "author": "David Rug",
19    "license": "MIT",
20    "dependencies": {
21      "@modelcontextprotocol/sdk": "^1.0.0"
22    },
23    "devDependencies": {
24      "@types/node": "^20.17.0",
25      "typescript": "^5.7.0"
26    }
27  }