@etamong-playground/ui 0.34.2

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,75 @@
1
+ {
2
+ "name": "@etamong-playground/ui",
3
+ "version": "0.34.2",
4
+ "description": "Shared frontend scaffold for etamong-lab apps: design-token contract (styles.css), a configurable cmdk command palette + discoverable trigger, Korean-IME-safe keyboard shortcuts, toast + dialog primitives, deploy-version badge, PWA install banner, full-page error surface, in-page state hooks (URL + sessionStorage), in-app history stack + back button, fetch wrapper with httperr ref parsing, oauth2-proxy auth hook + sign-in/out helpers, empty-state + copy-button primitives, service-worker registration + online-first SW recipe, backoffice scaffold, AppInfoSection canonical app-info card, time helpers, UserMenu + Avatar (profile + 내 정보 + 로그아웃), MobileTabBar (router-agnostic bottom tab bar, desktop-hidden), Sidebar (desktop nav shell, mobile-hidden; AppHeader + Primary + Secondary + Footer composition mirroring MobileTabBar + /more), StatusBanner + useStatusBanner (service-admin declared-incident strip), DocsHub (in-app docs surface + Claude-skill download).",
5
+ "type": "module",
6
+ "sideEffects": [
7
+ "*.css"
8
+ ],
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs"
17
+ },
18
+ "./helpers": {
19
+ "types": "./dist/helpers.d.ts",
20
+ "import": "./dist/helpers.js",
21
+ "require": "./dist/helpers.cjs"
22
+ },
23
+ "./testing": {
24
+ "types": "./dist/testing.d.ts",
25
+ "import": "./dist/testing.js",
26
+ "require": "./dist/testing.cjs"
27
+ },
28
+ "./styles.css": "./dist/styles.css"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "dependencies": {
34
+ "cmdk": "^1.1.1"
35
+ },
36
+ "peerDependencies": {
37
+ "@playwright/test": ">=1.40",
38
+ "msw": ">=2",
39
+ "react": ">=18",
40
+ "react-dom": ">=18"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "@playwright/test": {
44
+ "optional": true
45
+ },
46
+ "msw": {
47
+ "optional": true
48
+ }
49
+ },
50
+ "devDependencies": {
51
+ "@playwright/test": "^1.60.0",
52
+ "msw": "^2.14.6",
53
+ "@testing-library/react": "^16.0.0",
54
+ "@types/react": "^18.3.12",
55
+ "@types/react-dom": "^18.3.0",
56
+ "@vitest/coverage-v8": "^2.1.5",
57
+ "jsdom": "^25.0.1",
58
+ "react": "^18.3.1",
59
+ "react-dom": "^18.3.1",
60
+ "tsup": "^8.3.5",
61
+ "typescript": "^5.6.3",
62
+ "vitest": "^2.1.5"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ },
67
+ "license": "MIT",
68
+ "scripts": {
69
+ "build": "tsup",
70
+ "dev": "tsup --watch",
71
+ "typecheck": "tsc --noEmit",
72
+ "test": "vitest run",
73
+ "test:watch": "vitest"
74
+ }
75
+ }