-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "schepta-mcp",
"version": "1.0.0",
"type": "module",
"description": "MCP server exposing Schepta form tools: get_form_schema, validate_schema, preview_form",
"license": "MIT",
"main": "dist/server.js",
"bin": { "schepta-mcp": "dist/main.js" },
"files": ["dist"],
"repository": { "type": "git", "url": "https://github.com/guynikan/schepta-mcp.git" },
"homepage": "https://schepta.org",
"keywords": ["mcp", "schepta", "forms", "claude", "connector"],
"scripts": {
"build": "cross-env INPUT=schepta.html BUILD=1 vite build && tsc -p tsconfig.server.json",
"watch": "cross-env INPUT=schepta.html BUILD=1 vite build --watch",
"serve": "tsx main.ts",
"start": "node dist/main.js",
"dev": "concurrently -n vite,serve \"vite\" \"tsx main.ts\"",
"test": "tsx test-mcp.ts"
},
"dependencies": {
"@chakra-ui/react": "^2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@modelcontextprotocol/ext-apps": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.24.0",
"@schepta/adapter-react": "^1.0.0",
"@schepta/core": "^1.0.0",
"@schepta/factories": "^1.0.0",
"@schepta/factory-react": "^1.0.0",
"ajv": "^8",
"cors": "^2",
"express": "^5",
"framer-motion": "^11",
"react": "^19",
"react-dom": "^19",
"zod": "^4"
},
"devDependencies": {
"@types/cors": "^2",
"@types/express": "^5",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5",
"concurrently": "^9",
"cross-env": "^10",
"tsx": "^4",
"typescript": "^5",
"vite": "^6",
"vite-plugin-singlefile": "^2"
}
}