-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "@21st-dev/magic",
"version": "0.1.1-beta.1",
"type": "module",
"description": "Magic MCP UI builder by 21st.dev",
"homepage": "https://21st.dev/magic",
"repository": {
"type": "git",
"url": "git+https://github.com/21st-dev/magic-mcp.git"
},
"bin": {
"magic": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"UI",
"frontend",
"21st.dev",
"21",
"magic"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"build:prod": "npm run build && npm run test",
"debug": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js DEBUG=true",
"start": "node dist/index.js",
"prepare": "npm run build:prod",
"dev": "nodemon --watch src --ext ts,json --exec \"npm run build\"",
"publish-patch": "npm version patch && npm run build:prod && npm publish --access public",
"test": "jest"
},
"author": "serafim@21st.dev",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"open": "^10.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/react": "^19.0.12",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18.0.0"
}
}