@jogak/ui 0.1.0-alpha.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/index.html ADDED
@@ -0,0 +1,16 @@
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>Jogak</title>
7
+ <style>
8
+ *, *::before, *::after { box-sizing: border-box; }
9
+ body { margin: 0; font-family: system-ui, sans-serif; }
10
+ </style>
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ <script type="module" src="/src/app/main.tsx"></script>
15
+ </body>
16
+ </html>
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "@jogak/ui",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "Showcase viewer UI for Jogak — Sidebar / Preview / Controls / Actions and the JogakApp shell.",
5
+ "keywords": [
6
+ "jogak",
7
+ "storybook",
8
+ "storybook-alternative",
9
+ "showcase",
10
+ "design-system",
11
+ "component-library"
12
+ ],
13
+ "author": {
14
+ "name": "devclib",
15
+ "url": "https://github.com/devclib"
16
+ },
17
+ "license": "MIT",
18
+ "homepage": "https://github.com/devclib/jogak#readme",
19
+ "bugs": "https://github.com/devclib/jogak/issues",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/devclib/jogak.git",
23
+ "directory": "packages/ui"
24
+ },
25
+ "type": "module",
26
+ "sideEffects": false,
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.mjs",
29
+ "types": "./dist/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "import": "./dist/index.mjs",
34
+ "require": "./dist/index.js"
35
+ },
36
+ "./host": {
37
+ "types": "./dist/host/index.d.ts",
38
+ "import": "./dist/host/index.mjs",
39
+ "require": "./dist/host/index.js"
40
+ }
41
+ },
42
+ "files": [
43
+ "dist",
44
+ "index.html",
45
+ "README.md",
46
+ "LICENSE",
47
+ "CHANGELOG.md"
48
+ ],
49
+ "engines": {
50
+ "node": ">=20.18"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public",
54
+ "registry": "https://registry.npmjs.org/"
55
+ },
56
+ "dependencies": {
57
+ "prism-react-renderer": "^2.4.1",
58
+ "@jogak/core": "0.1.0-alpha.0",
59
+ "@jogak/react": "0.1.0-alpha.0"
60
+ },
61
+ "devDependencies": {
62
+ "@types/node": "^20.14.0",
63
+ "@types/react": "^19.0.0",
64
+ "@types/react-dom": "^19.0.0",
65
+ "@vitejs/plugin-react": "^4.3.0",
66
+ "react": "^19.0.0",
67
+ "react-dom": "^19.0.0",
68
+ "typescript": "^5.5.0",
69
+ "vite": "^6.0.0",
70
+ "vite-plugin-dts": "^4.5.4"
71
+ },
72
+ "peerDependencies": {
73
+ "@vitejs/plugin-react": "^4.3.0",
74
+ "react": ">=18.0.0",
75
+ "react-dom": ">=18.0.0",
76
+ "vite": "^6.0.0"
77
+ },
78
+ "peerDependenciesMeta": {
79
+ "vite": {
80
+ "optional": true
81
+ },
82
+ "@vitejs/plugin-react": {
83
+ "optional": true
84
+ }
85
+ },
86
+ "scripts": {
87
+ "dev": "vite",
88
+ "build": "vite build",
89
+ "preview": "vite preview",
90
+ "typecheck": "tsc --noEmit"
91
+ }
92
+ }