lecodes-design 0.1.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.
- package/README.md +86 -0
- package/dist/app/assets/__vite-browser-external-B-F28LA_.js +1 -0
- package/dist/app/assets/creator-ui-DBh5lzcv.wasm +0 -0
- package/dist/app/assets/creator-ui-IOlJLP4k.wasm +0 -0
- package/dist/app/assets/creator-ui-VMQTvHQj.js +1 -0
- package/dist/app/assets/index-OduKGRgC.js +3 -0
- package/dist/app/assets/index-W-QgLn7p.css +1 -0
- package/dist/app/assets/loadCreatorUiNode-ZiTBq5Mt.js +1 -0
- package/dist/app/index.html +13 -0
- package/dist/server.js +863 -0
- package/package.json +35 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lecodes-design",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "LeCodes Design — a live canvas of app screens for AI-driven prototyping. Dev server + browser board, launched via `lecodes design`.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"lecodes",
|
|
9
|
+
"design"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
"./server": "./dist/server.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "vite build && bun build src/server/index.ts --target=node --outfile dist/server.js",
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"typecheck": "vue-tsc --noEmit",
|
|
25
|
+
"prepublishOnly": "bun run build"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
29
|
+
"lecodes-renderer": "workspace:*",
|
|
30
|
+
"typescript": "~5.8.3",
|
|
31
|
+
"vite": "^8.0.16",
|
|
32
|
+
"vue": "^3.5.13",
|
|
33
|
+
"vue-tsc": "^2.2.8"
|
|
34
|
+
}
|
|
35
|
+
}
|