This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.66 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.66 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
{
"name": "@forgespace/ui-mcp",
"mcpName": "io.github.Forge-Space/ui-mcp",
"version": "0.25.0",
"description": "AI-driven UI generation via Model Context Protocol. Generate React, Next.js, Vue, Angular applications from natural language.",
"type": "module",
"main": "dist/index.js",
"bin": {
"forgespace-ui-mcp": "dist/index.js"
},
"scripts": {
"build": "tsup",
"build:bundle": "tsup",
"dev": "tsc --watch",
"start": "node dist/index.js",
"mcp": "node dist/index.js",
"clean": "rm -rf dist coverage .tsbuildinfo node_modules/.cache",
"validate": "npm run lint:check && npm run format:check && npm run test",
"validate:all": "npm run lint; npm run format:check; npx tsc --noEmit; npm test; npm run build",
"docker:build": "docker build -t forgespace-ui-mcp:latest .",
"docker:run": "docker run -i forgespace-ui-mcp:latest",
"lint": "eslint . --fix",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pretest": "npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --onlyChanged",
"pretest:coverage": "npm run build",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"knip": "knip",
"deps:check": "ncu",
"deps:update": "ncu -u",
"deps:update-interactive": "ncu -i",
"registry:check": "node scripts/registry-check.mjs",
"release": "node scripts/release.mjs",
"check:cycles": "madge --circular --extensions ts src/",
"prepare": "husky || true",
"prepublishOnly": "npm run build",
"lint:check": "eslint .",
"pre-commit": "npm run lint && npm run format && npm run test",
"prepack": "npm run build",
"publish": "npm publish --access public"
},
"dependencies": {
"@forgespace/siza-gen": "^0.15.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@resvg/resvg-js": "^2.6.2",
"@sentry/node": "^10.43.0",
"forge-ai-init": "^0.40.0",
"pino": "^10.3.1",
"playwright": "^1.58.2",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@forgespace/core": "^1.12.0",
"@jest/globals": "^30.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/sharp": "^0.32.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"knip": "^6.1.0",
"lint-staged": "^16.4.0",
"madge": "^8.0.0",
"npm-check-updates": "^21.0.2",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.0"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"bin",
"server.json",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"ai",
"ui-generation",
"react",
"nextjs",
"agent-tools",
"internal-developer-platform",
"forgespace",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Forge-Space/ui-mcp.git"
},
"bugs": {
"url": "https://github.com/Forge-Space/ui-mcp/issues"
},
"homepage": "https://github.com/Forge-Space/ui-mcp#readme",
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"overrides": {
"axios": ">=0.0.0 <0.30.4 || >0.30.4 <1.14.1 || >=1.14.2"
}
}