@studioindia/designx 1.0.0

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.
@@ -0,0 +1,11 @@
1
+ # Fonts
2
+
3
+ Place Roobert font files here:
4
+ - Roobert-Regular.woff2
5
+ - Roobert-Medium.woff2
6
+ - Roobert-SemiBold.woff2
7
+
8
+ Roobert is a commercial typeface by Display Foundry.
9
+ License at: https://displaay.net/typeface/roobert/
10
+
11
+ Until font files are added, the system falls back to Arial.
File without changes
File without changes
File without changes
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>DesignX</title>
7
+ <script type="module" crossorigin src="/assets/index-CBUxOHiU.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-vZi_8zoX.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@studioindia/designx",
3
+ "version": "1.0.0",
4
+ "description": "AI-powered product design pipeline — from brief to working app",
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=18.0.0"
8
+ },
9
+ "bin": {
10
+ "designx": "./bin/designx.js"
11
+ },
12
+ "files": [
13
+ "bin/",
14
+ "dist/",
15
+ "server.cjs",
16
+ "package.json",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "dev": "concurrently \"vite --host 0.0.0.0 --port 5173 --strictPort\" \"tsx watch server/index.ts\" --names \"vite,proxy\" --prefix-colors \"cyan,yellow\"",
21
+ "dev:clean": "sh -c 'for p in 5173 5174 5175 3001; do lsof -ti tcp:$p | xargs kill -9 2>/dev/null || true; done; npm run dev'",
22
+ "start": "npm run dev:clean",
23
+ "restart": "npm run dev:clean",
24
+ "dev:app": "vite",
25
+ "dev:server": "tsx watch server/index.ts",
26
+ "build": "tsc -b && vite build",
27
+ "build:server": "esbuild server/index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=server.cjs --external:fsevents --external:bufferutil --external:utf-8-validate",
28
+ "package": "npm run build && npm run build:server",
29
+ "prepublishOnly": "npm run package",
30
+ "lint": "eslint .",
31
+ "preview": "vite preview"
32
+ },
33
+ "dependencies": {
34
+ "@phosphor-icons/react": "^2.1.10",
35
+ "@stackblitz/sdk": "^1.11.0",
36
+ "clsx": "^2.1.0",
37
+ "docx": "^9.6.1",
38
+ "framer-motion": "^12.38.0",
39
+ "highlight.js": "^11.11.1",
40
+ "mammoth": "^1.12.0",
41
+ "multer": "^2.1.1",
42
+ "react": "^19.0.0",
43
+ "react-dom": "^19.0.0",
44
+ "react-router-dom": "^7.5.0",
45
+ "tailwind-merge": "^2.6.0",
46
+ "xlsx": "^0.18.5",
47
+ "zustand": "^5.0.12"
48
+ },
49
+ "devDependencies": {
50
+ "@eslint/js": "^9.0.0",
51
+ "@types/cors": "^2.8.19",
52
+ "@types/express": "^5.0.6",
53
+ "@types/multer": "^2.1.0",
54
+ "@types/react": "^19.0.0",
55
+ "@types/react-dom": "^19.0.0",
56
+ "@vitejs/plugin-react": "^4.4.0",
57
+ "autoprefixer": "^10.4.0",
58
+ "concurrently": "^9.2.1",
59
+ "cors": "^2.8.6",
60
+ "esbuild": "^0.25.12",
61
+ "eslint": "^9.0.0",
62
+ "eslint-plugin-react-hooks": "^5.0.0",
63
+ "eslint-plugin-react-refresh": "^0.4.0",
64
+ "express": "^5.2.1",
65
+ "globals": "^15.0.0",
66
+ "http-proxy-middleware": "^3.0.5",
67
+ "postcss": "^8.4.0",
68
+ "tailwindcss": "^3.4.0",
69
+ "tsx": "^4.21.0",
70
+ "typescript": "~5.7.0",
71
+ "typescript-eslint": "^8.0.0",
72
+ "vite": "^6.0.0"
73
+ }
74
+ }