-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.52 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
{
"name": "better-ui-ux",
"version": "1.0.0",
"description": "Open-source MCP skill for AI coding agents that replaces dull rectangles with beautiful, animated UIs. Real BM25 search (172 palettes), 114 parametric SVG icons, GSAP animations.",
"main": "build/index.js",
"type": "module",
"bin": {
"better-ui-ux": "./build/index.js",
"better-ui-ux-search": "./build/search/cli.js"
},
"scripts": {
"build": "tsc && mkdir -p build/data && cp data/*.json build/data/",
"start": "node build/index.js",
"dev": "ts-node-esm src/index.ts",
"watch": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"search": "tsx src/search/cli.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^1.6.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^5.3.2",
"vitest": "^1.2.0"
},
"files": [
"build/",
"data/",
"SKILL.md",
".claude/",
"skill.json",
".claude-plugin/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mert-byt/Better-UI-UX"
},
"keywords": [
"mcp",
"ui",
"ux",
"design-system",
"animation",
"gsap",
"scrolltrigger",
"palette",
"icons",
"lucide",
"phosphor",
"glassmorphism",
"neumorphism"
]
}