-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 934 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 934 Bytes
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
{
"name": "framesmith",
"version": "1.0.0",
"description": "MCP server that gives any AI assistant a visual design canvas",
"type": "module",
"bin": {
"framesmith": "./dist/index.js",
"framesmith-viewer": "./dist/viewer-standalone.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"docs/GUIDELINES.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"viewer": "tsx src/viewer-standalone.ts",
"bench": "tsx benchmark/run.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.96.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"lucide-static": "^0.577.0",
"nanoid": "^5.1.5",
"openai": "^6.38.0",
"puppeteer": "^24.7.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"license": "MIT"
}