-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.94 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
{
"name": "stitch-mcp-cli",
"version": "0.2.2",
"description": "CLI + MCP proxy para Google Stitch con scaffolding multi-framework",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"stitch-mcp-cli": "./dist/bin/cli.js"
},
"files": [
"dist/",
"skills/",
"README.md",
"LICENSE"
],
"packageManager": "pnpm@10.23.0",
"scripts": {
"dev": "tsx watch src/bin/cli.ts",
"build": "tsc",
"start": "node dist/bin/cli.js",
"mcp": "node dist/index.js",
"mcp:http": "node dist/http-server.js",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"changelog": "standard-version --_changelog",
"release": "standard-version",
"release:patch": "standard-version --release-as patch && pnpm publish",
"release:minor": "standard-version --release-as minor && pnpm publish",
"release:major": "standard-version --release-as major && pnpm publish"
},
"engines": {
"node": ">=20"
},
"keywords": [
"stitch",
"mcp",
"cli",
"google",
"ui-design",
"cursor",
"claude",
"opencode",
"antigravity",
"codex"
],
"license": "MIT",
"dependencies": {
"@google/stitch-sdk": "^0.3.5",
"@modelcontextprotocol/sdk": "^1.6.1",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "5.2.1",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"zod": "^3.23.8"
},
"optionalDependencies": {
"better-sqlite3": "^11.7.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/ejs": "^3.1.5",
"@types/express": "5.0.6",
"@types/node": "^22.10.0",
"standard-version": "9.5.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}