-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) 路 2.67 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) 路 2.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@devora_no/prompt-assistant-mcp",
"version": "0.2.1",
"description": "Production-ready MCP server for enhancing coding prompts with multiple AI providers, featuring TEST_MODE, health checks, and enhanced error handling",
"type": "module",
"main": "dist/index.js",
"bin": {
"devora-prompt-assistant": "dist/index.js",
"dpa": "dist/index.js"
},
"scripts": {
"dev:stdio": "tsx src/index.ts",
"dev:http": "nodemon --exec tsx src/index.ts",
"build": "tsc && chmod +x dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write .",
"version:patch": "pnpm version patch && git push --follow-tags",
"version:minor": "pnpm version minor && git push --follow-tags",
"version:major": "pnpm version major && git push --follow-tags",
"version:prerelease": "pnpm version prerelease && git push --follow-tags",
"preversion": "pnpm run lint && pnpm run test && pnpm run build",
"postversion": "git push --follow-tags",
"test:publish": "./scripts/test-publish.sh",
"inspect:stdio": "echo 'Open MCP Inspector and load examples/inspector-stdio.json'",
"test:context": "vitest run test/tools/collectContext.test.ts",
"test:context:git": "vitest run test/integration/collectContext.git.test.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"prompt",
"enhancement",
"anthropic",
"openai",
"gemini",
"perplexity"
],
"author": "Devora",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.30.1",
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^0.5.0",
"fast-glob": "^3.3.3",
"ignore": "^7.0.5",
"lru-cache": "^11.2.2",
"openai": "^4.67.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/Devora-AS/devora-prompt-assistant-mcp.git"
},
"homepage": "https://github.com/Devora-AS/devora-prompt-assistant-mcp#readme",
"bugs": {
"url": "https://github.com/Devora-AS/devora-prompt-assistant-mcp/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}