-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.58 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.58 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
{
"name": "chatgpt-app-typescript-template",
"version": "1.0.0",
"description": "Minimal, production-ready MCP Apps template with React widgets",
"type": "module",
"private": true,
"workspaces": [
"server",
"widgets"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:widgets\"",
"dev:inline": "INLINE_DEV_MODE=true concurrently \"npm run dev:server\" \"npm run dev:widgets:inline\"",
"dev:server": "npm run dev --workspace=server",
"dev:widgets": "npm run dev --workspace=widgets",
"dev:widgets:inline": "npm run build:watch --workspace=widgets",
"start": "concurrently \"npm run start:server\" \"npm run start:widgets\"",
"start:server": "npm run start --workspace=server",
"start:widgets": "npm run serve --workspace=widgets",
"storybook": "npm run storybook --workspace=widgets",
"build-storybook": "npm run build-storybook --workspace=widgets",
"inspect": "npx @mcpjam/inspector@latest --config mcp-inspector.json",
"build": "npm run build:widgets && npm run build:server",
"build:server": "npm run build --workspace=server",
"build:widgets": "npm run build --workspace=widgets",
"test": "npm run test --workspaces",
"test:server": "npm run test --workspace=server",
"test:widgets": "npm run test --workspace=widgets",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"type-check": "tsc --noEmit --project server && tsc --noEmit --project widgets"
},
"keywords": [
"mcp",
"mcp-apps",
"apps",
"template",
"react",
"typescript"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@eslint-react/eslint-plugin": "^4.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.50.1",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"fast-glob": "^3.3.3",
"p-limit": "^7.3.0",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite-plugin-compression": "^0.5.1"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"globals": "^17.5.0",
"zod": "^4.1.13"
},
"overrides": {
"zod": "^4.1.13",
"@typescript-eslint/eslint-plugin": {
"typescript": "$typescript"
},
"@typescript-eslint/parser": {
"typescript": "$typescript"
},
"eslint-plugin-jsx-a11y": {
"eslint": "$eslint"
}
},
"resolutions": {
"zod": "^4.1.13"
}
}