-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.44 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
{
"name": "preflight-dev",
"version": "3.2.0",
"description": "Preflight checks for AI coding agents — catch vague prompts, surface missing context, search session history",
"type": "module",
"main": "dist/index.js",
"bin": {
"preflight-dev": "./bin/cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"claude",
"mcp",
"prompt",
"ai",
"claude-code",
"model-context-protocol",
"mcp-server",
"prompt-engineering",
"developer-tools"
],
"repository": {
"type": "git",
"url": "https://github.com/TerminalGravity/preflight"
},
"license": "MIT",
"author": "Jack Felke",
"files": [
"src/",
"bin/",
"dist/",
"README.md",
"LICENSE"
],
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/js-yaml": "^4.0.9",
"@xenova/transformers": "^2.17.2",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.11",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}