-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.92 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.92 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
{
"name": "@merabylabs/promptarchitect-mcp",
"version": "0.1.6",
"description": "MCP (Model Context Protocol) server for PromptArchitect - AI-powered prompt engineering tools for Claude, Cursor, VS Code, Windsurf, Zed & more",
"keywords": [
"mcp",
"model-context-protocol",
"prompt-engineering",
"ai",
"llm",
"claude",
"cursor",
"copilot",
"vscode",
"windsurf",
"codeium",
"zed",
"jetbrains",
"continue",
"cline",
"gemini",
"prompt-generation",
"prompt-refinement",
"ai-assistant",
"developer-tools",
"code-assistant"
],
"author": "Meraby Labs",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/MerabyLabs/promptarchitect-mcp"
},
"homepage": "https://promptarchitectlabs.com",
"bugs": {
"url": "https://github.com/promptarchitect/mcp-server/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"promptarchitect-mcp": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"start:stdio": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.25.0",
"dotenv": "^17.2.3",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"rimraf": "^6.0.1",
"typescript": "~5.7.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"zod": "^3.25.0"
}
}