-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.46 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.46 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
{
"name": "@formbridge/mcp-server",
"version": "0.2.0",
"description": "FormBridge MCP Server - Mixed-mode agent-human form submission",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"formbridge",
"intake",
"schema",
"ai-agent",
"tool-server"
],
"author": "Amit Paz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agentkitai/formbridge.git"
},
"homepage": "https://github.com/agentkitai/formbridge#readme",
"bugs": {
"url": "https://github.com/agentkitai/formbridge/issues"
},
"dependencies": {
"@formbridge/shared": "*",
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.0.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"hono": "^4.0.0",
"jose": "^6.1.3",
"pino": "^10.3.1",
"prom-client": "^15.1.3",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.980.0",
"@aws-sdk/s3-request-presigner": "^3.980.0",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/ioredis": "^4.28.10",
"@types/node": "^20.0.0",
"@types/pg": "^8.11.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^1.2.0",
"better-sqlite3": "^12.6.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.2.0",
"pg": "^8.13.0",
"pino-pretty": "^13.1.3",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"typescript-eslint": "^8.54.0",
"vitest": "^1.0.0"
},
"workspaces": [
"packages/*"
],
"optionalDependencies": {
"ioredis": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"pg": "^8.13.0"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
}
}
}