@tarot-ai/pixel 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@tarot-ai/pixel",
3
+ "version": "0.0.1",
4
+ "description": "MCP runtime for local design understanding and design-to-code workflows with Tarot Pixel",
5
+ "keywords": [
6
+ "mcp",
7
+ "design-to-code",
8
+ "mastergo",
9
+ "figma",
10
+ "sketch"
11
+ ],
12
+ "author": "D2C Team",
13
+ "license": "UNLICENSED",
14
+ "type": "module",
15
+ "bin": {
16
+ "qoder-pixel": "dist/index.cjs"
17
+ },
18
+ "main": "dist/index.cjs",
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "dev:view": "vite view --config view/vite.config.ts",
24
+ "build:view": "tsc --noEmit -p view/tsconfig.json && vite build view --config view/vite.config.ts",
25
+ "build:server": "node scripts/build.mjs",
26
+ "build": "npm run build:view && npm run build:server",
27
+ "prepack": "npm run build && node ../../scripts/verify-dist.mjs",
28
+ "typecheck": "tsc --noEmit && tsc --noEmit -p view/tsconfig.json",
29
+ "test": "vitest run",
30
+ "test:mcp": "npm run build && vitest run tests/mcp-smoke.test.ts",
31
+ "preview:view": "vite preview view --config view/vite.config.ts"
32
+ },
33
+ "engines": {
34
+ "node": ">=20.19.0"
35
+ },
36
+ "devDependencies": {
37
+ "@fontsource-variable/geist": "^5.2.9",
38
+ "@modelcontextprotocol/sdk": "1.29.0",
39
+ "@radix-ui/react-hover-card": "^1.1.15",
40
+ "@radix-ui/react-popover": "^1.1.15",
41
+ "@radix-ui/react-scroll-area": "^1.2.10",
42
+ "@radix-ui/react-separator": "^1.1.7",
43
+ "@radix-ui/react-slot": "^1.2.3",
44
+ "@radix-ui/react-tooltip": "^1.2.8",
45
+ "@tailwindcss/vite": "^4.1.14",
46
+ "@types/pixelmatch": "^5.2.6",
47
+ "@types/pngjs": "^6.0.5",
48
+ "@types/react": "^19.0.0",
49
+ "@types/react-dom": "^19.0.0",
50
+ "@types/subset-font": "^2.3.0",
51
+ "@types/ws": "^8.18.0",
52
+ "@vitejs/plugin-react": "^4.3.4",
53
+ "class-variance-authority": "^0.7.1",
54
+ "clsx": "^2.1.1",
55
+ "lucide-react": "^0.560.0",
56
+ "ml-hclust": "^3.1.0",
57
+ "pixelmatch": "5.3.0",
58
+ "pngjs": "^7.0.0",
59
+ "react": "^19.0.0",
60
+ "react-dom": "^19.0.0",
61
+ "react-toastify": "^10.0.6",
62
+ "subset-font": "^2.5.0",
63
+ "tailwind-merge": "^3.4.0",
64
+ "tailwindcss": "^4.1.14",
65
+ "tw-animate-css": "^1.4.0",
66
+ "typescript": "^5.7.2",
67
+ "vite": "^6.0.7",
68
+ "vitest": "^4.1.0",
69
+ "ws": "^8.18.0",
70
+ "zod": "^3.25.76",
71
+ "zustand": "^5.0.8"
72
+ }
73
+ }