-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.17 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
{
"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",
"promptimprover-hook-pre": "./dist/hooks/pre-prompt.js",
"promptimprover-hook-post": "./dist/hooks/post-execution.js"
},
"scripts": {
"prebuild": "node scripts/sync-version.mjs && node scripts/clean-dist.mjs",
"build": "tsc && 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",
"test:coverage": "vitest run --coverage",
"test:acceptance": "vitest run tests/acceptance",
"test:stress": "vitest run tests/stress",
"security:secrets": "node scripts/security/scan-secrets.mjs",
"security:audit": "npm audit --omit=dev --audit-level=high",
"package:check": "npm pack --dry-run",
"db:backup": "node scripts/operations/event-store-recovery.mjs backup",
"db:restore": "node scripts/operations/event-store-recovery.mjs restore",
"recovery:event-store:abrupt": "node scripts/operations/event-store-abrupt-recovery.mjs",
"acceptance:semantic": "node scripts/acceptance/semantic-provider-acceptance.mjs",
"acceptance:gemma:live": "node scripts/acceptance/semantic-provider-acceptance.mjs --require-live",
"acceptance:tracked-turn": "node scripts/acceptance/tracked-turn-acceptance.mjs",
"stress:event-store": "node scripts/stress/event-store-stress.mjs",
"stress:event-store:soak": "node scripts/stress/event-store-soak.mjs",
"release:verify": "npm run build && npm run test:coverage && npm run test:acceptance && npm run acceptance:semantic && npm run acceptance:tracked-turn && npm run test:stress && npm run stress:event-store && npm run recovery:event-store:abrupt && npm run stress:event-store:soak && npm run security:audit && npm run security:secrets && npm run package:check"
},
"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",
"@vitest/coverage-v8": "4.1.4",
"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": ">=22"
},
"files": [
"dist/",
"hooks/config/",
"scripts/operations/"
]
}