@pghoya2956/livemap 1.0.1 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pghoya2956/livemap",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "Project status board engine: scans a repository into a graph and serves a one-screen map of journeys, screens, APIs, tests and work.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -20,7 +20,8 @@
20
20
  "node": ">=22"
21
21
  },
22
22
  "scripts": {
23
- "test": "node --test test/*.test.mjs"
23
+ "test": "node --test test/*.test.mjs",
24
+ "build:ui": "node scripts/build-ui.mjs"
24
25
  },
25
26
  "peerDependencies": {
26
27
  "@playwright/test": ">=1.63.0 <2"
@@ -31,7 +32,11 @@
31
32
  }
32
33
  },
33
34
  "devDependencies": {
34
- "@playwright/test": "1.63.0"
35
+ "@playwright/test": "1.63.0",
36
+ "@types/react": "19.3.0",
37
+ "esbuild": "0.28.2",
38
+ "react": "19.3.0",
39
+ "react-dom": "19.3.0"
35
40
  },
36
41
  "repository": {
37
42
  "type": "git",
package/site/index.html CHANGED
@@ -4,22 +4,10 @@
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
6
  <title>상황판</title>
7
- <!-- 서빙 CSP(default-src 'self')에 맞춰 스타일·스크립트·서체는 같은 출처의 /map/ 아래 파일만 쓴다. 인라인은 넣지 않는다. -->
8
- <link rel="stylesheet" href="/map/map.css">
7
+ <link rel="stylesheet" href="map.css">
9
8
  </head>
10
9
  <body>
11
-
12
- <div class="app">
13
- <aside class="side">
14
- <div class="brand"><span id="brandName">상황판</span><small id="brandSha"></small></div>
15
- <nav class="nav" id="nav"></nav>
16
- <div class="foot" id="sideFoot"></div>
17
- </aside>
18
- <main class="main">
19
- <div class="head"><h1 id="title"></h1><span class="sub" id="subtitle"></span><div class="meta" id="meta"></div></div>
20
- <div id="view"><p class="empty">불러오는 중…</p></div>
21
- </main>
22
- </div>
23
- <script src="/map/map.js"></script>
10
+ <div id="root"></div>
11
+ <script src="map.js"></script>
24
12
  </body>
25
13
  </html>