@ikenga/pkg-studio 0.2.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/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@ikenga/pkg-studio",
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "description": "com.ikenga.studio app pkg — project sidecar (storyboard/render queue + HuggingFace and Excalidraw renderer adapters), FFmpeg-backed exporter, and a 40-tool MCP server; iframe UI in progress.",
6
+ "dependencies": {
7
+ "@dnd-kit/core": "^6.3.1",
8
+ "@dnd-kit/sortable": "^10.0.0",
9
+ "@dnd-kit/utilities": "^3.2.2",
10
+ "@excalidraw/excalidraw": "^0.18.1",
11
+ "@ikenga/contract": "^0.13.0",
12
+ "@ikenga/tokens": "^0.3.0",
13
+ "@modelcontextprotocol/ext-apps": "^1.7.1",
14
+ "@modelcontextprotocol/sdk": "^1.29.0",
15
+ "@supabase/supabase-js": "^2.45.0",
16
+ "better-sqlite3": "^11.3.0",
17
+ "chokidar": "^3.6.0",
18
+ "excalidraw-animate": "^0.7.2",
19
+ "puppeteer": "^25.0.0",
20
+ "react": "^19.0.0",
21
+ "react-dom": "^19.0.0",
22
+ "zod": "^3.23.0",
23
+ "zustand": "^5.0.0",
24
+ "@ikenga/studio-schema": "0.1.0",
25
+ "@ikenga/ui-lib": "0.2.0"
26
+ },
27
+ "devDependencies": {
28
+ "@tailwindcss/vite": "^4.2.4",
29
+ "@types/better-sqlite3": "^7.6.11",
30
+ "@types/node": "^20.11.0",
31
+ "@types/react": "^19.0.0",
32
+ "@types/react-dom": "^19.0.0",
33
+ "@vitejs/plugin-react": "^4.3.0",
34
+ "esbuild": "^0.27.7",
35
+ "tailwindcss": "4",
36
+ "typescript": "^5.4.0",
37
+ "vite": "^5.4.0"
38
+ },
39
+ "files": [
40
+ "manifest.json",
41
+ "dist",
42
+ "mcp/dist",
43
+ "sidecars/project/dist",
44
+ "README.md"
45
+ ],
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "git+https://github.com/Royalti-io/ikenga-pkgs.git",
52
+ "directory": "packages/apps/studio"
53
+ },
54
+ "scripts": {
55
+ "dev": "vite",
56
+ "build": "tsc -p tsconfig.web.json --noEmit && vite build",
57
+ "preview": "vite preview",
58
+ "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.web.json --noEmit",
59
+ "build:sidecar": "bash sidecars/project/build.sh",
60
+ "dev:sidecar": "bash sidecars/project/build.sh --watch",
61
+ "build:mcp": "bash mcp/build.sh",
62
+ "dev:mcp": "bash mcp/build.sh --watch"
63
+ }
64
+ }