-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.36 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "faf-mcp",
"version": "2.3.1",
"mcpName": "one.faf/faf-mcp",
"description": "Persistent Project Context for Cursor, IDEs and VS Code. IANA-registered .faf format. Curated core tools by default, full set via FAF_TOOLS=all.",
"icon": "./assets/icons/faf-icon-256.png",
"logo": "./assets/icons/faf-icon-256.png",
"displayName": ".faf 🐘",
"main": "dist/src/index.js",
"bin": {
"faf-mcp": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "node start-http.js",
"dev": "ts-node src/server.ts",
"dev:stdio": "ts-node src/cli.ts --transport stdio",
"dev:http": "ts-node src/cli.ts --transport http-sse --port 3001",
"test": "bun test --isolate --timeout=120000 --path-ignore-patterns=\"**/performance.test.ts\"",
"test:performance": "bun test tests/performance.test.ts",
"test:mcp": "mcp-inspector stdio ts-node src/cli.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"check:stylesheet": "node scripts/check-stylesheet-drift.mjs",
"format:check": "prettier --check \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"sync-version": "node scripts/sync-version.js",
"version": "npm run sync-version && git add project.faf",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js",
"debug": "node --inspect-brk=0.0.0.0:9229 -r ts-node/register src/cli.ts"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"faf",
".faf",
"dot-faf",
"claude",
"claude-desktop",
"cursor",
"cursor-ide",
"windsurf",
"windsurf-editor",
"gemini",
"vscode",
"anthropic",
"ai-context",
"project-dna",
"ai-readiness",
"context-management",
"persistent-project-context",
"ide-context",
"iana-format",
"project-intelligence",
"codebase-understanding",
"ai-assistant",
"ai-tools",
"llm-tools",
"developer-tools",
"devtools",
"typescript",
"open-source",
"mit-license",
"free-forever"
],
"author": {
"name": "wolfejam",
"email": "team@faf.one",
"url": "https://wolfejam.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Wolfe-Jam/faf-mcp.git"
},
"bugs": {
"url": "https://github.com/Wolfe-Jam/faf-mcp/issues"
},
"homepage": "https://faf.one",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"assets/**/*",
"scripts/**/*",
"skill/SKILL.md",
"skills/**",
"README.md",
"CLAUDE.md",
".faf",
"project.faf",
"LICENSE",
"CHANGELOG.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"faf-cli": "^6.10.1",
"faf-scoring-kernel": "^2.0.3",
"yaml": "^2.4.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"@hono/node-server": ">=2.0.5",
"hono": ">=4.12.34",
"fast-uri": ">=4.1.2",
"ip-address": ">=10.3.1",
"brace-expansion@1": "1.1.18",
"brace-expansion@2": "2.1.4"
}
}