-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@aidemd-mcp/server",
"version": "0.9.0",
"mcpName": "io.github.aidemd-mcp/server",
"description": "MCP server that teaches any agent the AIDE methodology through tool descriptions and progressive disclosure tooling",
"type": "module",
"bin": {
"aidemd-mcp": "dist/index.js",
"server": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && npm run build:versions",
"build:versions": "tsx scripts/build-versions.ts",
"prepublishOnly": "rm -rf dist && npm run build",
"dev": "tsc --watch",
"test": "vitest run",
"export-pdf": "tsx scripts/export-pdf.ts",
"tree": "tsx src/cli/index.tsx",
"publish:all": "node scripts/publish.mjs"
},
"keywords": [
"mcp",
"aide",
"progressive-disclosure",
"ai-agents",
"spec-documents"
],
"author": "TetsuKod.ai",
"repository": {
"type": "git",
"url": "https://github.com/aidemd-mcp/server.git"
},
"license": "MIT",
"files": [
"dist",
"README.md",
".aide",
".aide/bin",
".claude/commands/aide.md",
".claude/commands/aide",
".claude/agents/aide",
".claude/skills"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"ink": "^7.0.0",
"react": "^19.2.5",
"typescript": "^5.8.3",
"yaml": "^2.8.3",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/marked": "^6.0.0",
"@types/node": "^22.15.2",
"@types/react": "^19.2.14",
"ink-testing-library": "^4.0.0",
"marked": "^18.0.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^24.40.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"vitest": "^3.1.2"
}
}