-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.92 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.92 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
{
"name": "@heroui/mcp-monorepo",
"private": true,
"description": "Monorepo for HeroUI Model Context Protocol servers",
"keywords": [
"mcp",
"heroui",
"model-context-protocol",
"ai",
"llm",
"monorepo"
],
"author": "HeroUI <support@heroui.com> (https://github.com/heroui-inc)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/heroui-inc/heroui-mcp"
},
"bugs": {
"url": "https://github.com/heroui-inc/heroui-mcp/issues"
},
"homepage": "https://github.com/heroui-inc/heroui-mcp",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.17.0",
"scripts": {
"build": "turbo run build",
"build:native": "pnpm --filter @heroui/native-mcp run build",
"build:react": "pnpm --filter @heroui/react-mcp run build",
"build:migration": "pnpm --filter @heroui/migration-mcp run build",
"dev": "turbo run dev --filter='!@heroui/mastra'",
"dev:native": "pnpm --filter @heroui/native-mcp run dev",
"dev:react": "pnpm --filter @heroui/react-mcp run dev",
"dev:migration": "pnpm --filter @heroui/migration-mcp run dev",
"dev:mastra": "pnpm --filter @heroui/mastra run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"format": "prettier --write \"{apps,packages}/**/*.{ts,tsx,json}\"",
"test": "turbo run test",
"release:check": "turbo run release:check",
"inspect:native": "pnpm --filter @heroui/native-mcp run inspect",
"inspect:react": "pnpm --filter @heroui/react-mcp run inspect",
"inspect:migration": "pnpm --filter @heroui/migration-mcp run inspect",
"extract:native": "pnpm --filter @heroui/native-mcp run extract:dev",
"extract:react": "pnpm --filter @heroui/react-mcp run extract:dev"
},
"devDependencies": {
"@types/node": "^22.18.6",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"turbo": "^2.3.3",
"typescript": "^5.9.2"
}
}