-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.09 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
{
"name": "gemini-prompt-refiner",
"version": "8.0.0",
"description": "Cross-CLI prompt refinement using an MCP server.",
"main": "dist/src/index.js",
"bin": {
"gemini-prompt-refiner": "./dist/src/index.js"
},
"scripts": {
"prebuild": "node scripts/sync-version.mjs",
"build": "tsc \u0026\u0026 node scripts/copy-dashboard.mjs",
"start": "node dist/src/index.js",
"dev": "ts-node src/index.ts",
"pretest": "node scripts/sync-version.mjs",
"test": "vitest run"
},
"keywords": [
"mcp",
"mcp-server",
"gemini",
"prompt-refinement"
],
"author": "Kim Harjamaki",
"license": "MIT",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.8.0",
"chokidar": "^5.0.0",
"flexsearch": "^0.7.43",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.17",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coding-Autopilot-System/Promptimprover.git",
"directory": "universal-refiner"
},
"homepage": "https://github.com/Coding-Autopilot-System/Promptimprover#readme",
"bugs": {
"url": "https://github.com/Coding-Autopilot-System/Promptimprover/issues"
},
"engines": {
"node": "\u003e=22"
},
"files": [
"dist/"
]
}