-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "@flatfile/mcp-server",
"version": "0.1.1",
"description": "MCP Server for Flatfile's API.",
"license": "ISC",
"author": "Flatfile, Inc.",
"homepage": "https://flatfile.com",
"bugs": "https://github.com/FlatFilers/mcp-server-flatfile/issues",
"module": "index.ts",
"type": "module",
"bin": {
"mcp-server-flatfile": "dist/index.js"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"check": "biome check && bun check:types",
"check:types": "tsc --noEmit",
"fix": "biome check --write",
"ci": "bun run build && bun run check",
"release": "npm run ci && np --no-tests"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"node-fetch": "^3.3.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"np": "^10.2.0",
"npm-check-updates": "^18.0.1",
"shx": "^0.4.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/FlatFilers/mcp-server-flatfile.git"
},
"packageManager": "bun@1.2.10"
}