-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.11 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.11 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
{
"name": "designnn",
"version": "0.4.0",
"description": "Trend-driven design prompt engine for Figma AI. Generate high-quality UI/UX prompts powered by real-time design trend analysis.",
"type": "module",
"bin": {
"designnn": "./dist/cli.js"
},
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node",
"dev": "bun run src/cli.ts",
"start": "node dist/cli.js"
},
"keywords": [
"design",
"figma",
"ai",
"prompt",
"ui",
"ux",
"trend",
"mcp",
"cli"
],
"author": "concepter (Yoshihisa Abe)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abe430/designnn"
},
"files": [
"dist/",
"public/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/express": "^5.0.6",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"express": "^5.2.1",
"openai": "^6.29.0",
"ora": "^9.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}