@ait-co/devtools 0.1.43 → 0.1.45
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.en.md +97 -7
- package/README.md +115 -7
- package/dist/mcp/cli.d.ts +8 -1
- package/dist/mcp/cli.d.ts.map +1 -1
- package/dist/mcp/cli.js +1163 -176
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +343 -41
- package/dist/mcp/server.js.map +1 -1
- package/dist/panel/index.js +2 -2
- package/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -18,6 +18,91 @@ Lets you develop and test Apps in Toss mini-apps in a **regular browser** — wi
|
|
|
18
18
|
|
|
19
19
|
Live demo: <https://devtools.aitc.dev/> (the `e2e/fixture/` from this repo deployed to GitHub Pages as a self-contained demo).
|
|
20
20
|
|
|
21
|
+
## 15-second quickstart — pick your environment
|
|
22
|
+
|
|
23
|
+
There are four runtime environments. Pick the card that fits your situation and follow the link to the detailed scenario doc.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
**Environment 1 — Local browser** (fastest, HMR on)
|
|
28
|
+
|
|
29
|
+
Develop with the mock SDK + DevTools panel in desktop Chrome. No Toss app or phone needed.
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pnpm add -D @ait-co/devtools
|
|
33
|
+
# add the unplugin to vite.config.ts → pnpm dev
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
DevTools panel: click the **AIT** button in the bottom-right corner. Details: [`docs/scenarios/env-1.md`](./docs/scenarios/env-1.md)
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
**Environment 2 — Real-device PWA** (real WebKit engine, HMR on, no Toss review required)
|
|
41
|
+
|
|
42
|
+
Preview your mini-app on a real phone using Safari/WebKit. Install the launcher PWA once, then scan a QR code each session.
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# add the tunnel option to vite.config.ts, then:
|
|
46
|
+
pnpm dev:phone # same as AIT_TUNNEL=1 pnpm dev
|
|
47
|
+
# QR appears in the terminal → scan with your phone camera → opens in the launcher PWA
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
One-time prerequisite: add `https://devtools.aitc.dev/launcher/` to your phone's home screen. Details: [`docs/scenarios/env-2.md`](./docs/scenarios/env-2.md)
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
**Environment 3 — intoss-private** (Toss WebView, HMR off, debug only)
|
|
55
|
+
|
|
56
|
+
Load a dogfood bundle in the real Toss app WebView and debug it via the MCP relay.
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
devtools-mcp # start MCP server → QR printed in terminal
|
|
60
|
+
# ait build && ait deploy --scheme-only
|
|
61
|
+
# call build_attach_url → scan QR → Toss app loads bundle + relay attaches
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
No HMR (Toss WebView cold-load only). Details: [`docs/scenarios/env-3.md`](./docs/scenarios/env-3.md)
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
**Environment 4 — Live deployed app** (passed review, HMR off, read-only debug)
|
|
69
|
+
|
|
70
|
+
Attach a relay to a live OPENED app to observe runtime behavior.
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
devtools-mcp # start MCP server
|
|
74
|
+
# call build_attach_url → scan QR → live app loads + relay attaches
|
|
75
|
+
# call_sdk / evaluate: watch for side effects (real users may be affected)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Details: [`docs/scenarios/env-4.md`](./docs/scenarios/env-4.md)
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Five common problems
|
|
83
|
+
|
|
84
|
+
**"QR window doesn't open"**
|
|
85
|
+
|
|
86
|
+
Either `build_attach_url` wasn't called first, or `open_in_browser` failed silently in a headless environment. The terminal output includes a path to a saved PNG — open that file directly, or scan the text QR printed in the terminal. (Related: [#288](https://github.com/apps-in-toss-community/devtools/issues/288))
|
|
87
|
+
|
|
88
|
+
**"Page not attached" — list_pages returns an empty array**
|
|
89
|
+
|
|
90
|
+
No page has joined the relay yet. Re-enter via `build_attach_url` → QR scan on your phone. When the MCP error message reads "page not attached — run build_attach_url then scan QR", this is the case.
|
|
91
|
+
|
|
92
|
+
**"Tunnel down" — no response or timeout**
|
|
93
|
+
|
|
94
|
+
A cloudflared quick tunnel can drop after a few hours. Restart the `devtools-mcp` process to get a new tunnel URL, then scan the new QR. (Related: [#290](https://github.com/apps-in-toss-community/devtools/issues/290))
|
|
95
|
+
|
|
96
|
+
**"Page crash" — list_pages shows a non-null crashDetectedAt**
|
|
97
|
+
|
|
98
|
+
The page on the phone died (OOM, JS exception, or native bridge crash). Relaunch the app, then re-attach via `build_attach_url` → QR scan. (Related: [#265](https://github.com/apps-in-toss-community/devtools/issues/265))
|
|
99
|
+
|
|
100
|
+
**"SDK not available" — window.__sdkCall not injected**
|
|
101
|
+
|
|
102
|
+
When `call_sdk` returns `ok: false, error: "window.__sdkCall is not available"`, a non-dogfood bundle is loaded. Redeploy through the dogfood channel with the `__DEBUG_BUILD__` flag enabled and try again. This error is the expected result in environment 2 (PWA). (Related: [#285](https://github.com/apps-in-toss-community/devtools/issues/285))
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
21
106
|
## Install
|
|
22
107
|
|
|
23
108
|
```bash
|
|
@@ -861,13 +946,13 @@ AI coding agents (Claude Code, Cursor, etc.) can observe a running mini-app dire
|
|
|
861
946
|
|
|
862
947
|
A local browser (env 1) and a phone Toss WebView (env 2/3) both speak CDP, so every tool works identically in both environments — the only difference is the attach strategy (`--target=relay` vs `--target=local`).
|
|
863
948
|
|
|
864
|
-
| Mode + target | Invocation | Target | Tools |
|
|
865
|
-
|
|
866
|
-
| `--mode=debug --target=relay` (default) | `devtools-mcp` |
|
|
867
|
-
| `--mode=debug --target=local` | `devtools-mcp --target=local` | Local Chromium launched by the MCP server (CDP direct-attach, no relay needed, env 1) | same |
|
|
868
|
-
| `--mode=dev` | `devtools-mcp --mode=dev` | Mock state from a running Vite dev server | `AIT.*` (+ `devtools_get_mock_state` alias) |
|
|
949
|
+
| Mode + target | Invocation | Env var | Target | Tools |
|
|
950
|
+
|---|---|---|---|---|
|
|
951
|
+
| `--mode=debug --target=relay` (default) | `MCP_ENV=relay devtools-mcp` | `MCP_ENV=relay` recommended | Dogfood bundle on a phone (CDP/Chii relay + cloudflared tunnel, env 2/3) | console/network/page + DOM/snapshot/screenshot + `AIT.*` |
|
|
952
|
+
| `--mode=debug --target=local` | `devtools-mcp --target=local` | `MCP_ENV=mock` (auto) | Local Chromium launched by the MCP server (CDP direct-attach, no relay needed, env 1) | same |
|
|
953
|
+
| `--mode=dev` | `devtools-mcp --mode=dev` | `MCP_ENV=mock` (auto) | Mock state from a running Vite dev server (AIT.* only, no CDP) | `AIT.*` (+ `devtools_get_mock_state` alias) |
|
|
869
954
|
|
|
870
|
-
`--target=local` opens `AIT_DEVTOOLS_URL` (default `http://localhost:5173`) and attaches directly to a local Chromium — no relay or tunnel required. `--mode=dev` reads the mock-state HTTP endpoint of the Vite dev server.
|
|
955
|
+
`--target=local` opens `AIT_DEVTOOLS_URL` (default `http://localhost:5173`) and attaches directly to a local Chromium — no relay or tunnel required. `--mode=dev` reads the mock-state HTTP endpoint of the Vite dev server and does not provide CDP tools. For on-device sessions (env 3/4), setting `MCP_ENV=relay` explicitly ensures the relay tool surface is visible even before the tunnel URL is auto-detected.
|
|
871
956
|
|
|
872
957
|
### Debug mode (CDP via Chii)
|
|
873
958
|
|
|
@@ -882,12 +967,17 @@ Running `devtools-mcp` as a stdio server starts a local Chii relay on an OS-assi
|
|
|
882
967
|
"mcpServers": {
|
|
883
968
|
"ait-debug": {
|
|
884
969
|
"command": "pnpm",
|
|
885
|
-
"args": ["exec", "devtools-mcp"]
|
|
970
|
+
"args": ["exec", "devtools-mcp"],
|
|
971
|
+
"env": {
|
|
972
|
+
"MCP_ENV": "relay"
|
|
973
|
+
}
|
|
886
974
|
}
|
|
887
975
|
}
|
|
888
976
|
}
|
|
889
977
|
```
|
|
890
978
|
|
|
979
|
+
Setting `MCP_ENV=relay` explicitly ensures the relay tool surface is visible before the tunnel URL is auto-detected.
|
|
980
|
+
|
|
891
981
|
| Tool | CDP / AIT backing | Description |
|
|
892
982
|
|---|---|---|
|
|
893
983
|
| `list_console_messages` | `Runtime.consoleAPICalled` | Recent console.log/warn/error messages (level, text, timestamp, args) |
|
package/README.md
CHANGED
|
@@ -18,6 +18,91 @@
|
|
|
18
18
|
|
|
19
19
|
라이브 데모: <https://devtools.aitc.dev/> (이 repo의 `e2e/fixture/`를 GitHub Pages에 그대로 배포한 self-contained 데모).
|
|
20
20
|
|
|
21
|
+
## 15초 quickstart — 내 상황에 맞는 환경 고르기
|
|
22
|
+
|
|
23
|
+
4가지 실행 환경이 있습니다. 지금 상황에 맞는 카드 하나를 고르고, 해당 상세 시나리오 문서로 이동하세요.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
**환경 1 — 로컬 브라우저** (가장 빠름, HMR O)
|
|
28
|
+
|
|
29
|
+
데스크탑 Chrome에서 mock SDK + DevTools 패널로 개발합니다. 토스 앱·폰 없이 즉시 시작.
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pnpm add -D @ait-co/devtools
|
|
33
|
+
# vite.config.ts에 unplugin 추가 → pnpm dev
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
DevTools 패널: 화면 우하단 **AIT** 버튼. 상세: [`docs/scenarios/env-1.md`](./docs/scenarios/env-1.md)
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
**환경 2 — 실기기 PWA** (실 WebKit 엔진, HMR O, 토스 검수 불필요)
|
|
41
|
+
|
|
42
|
+
폰에서 실기기 Safari/WebKit 엔진으로 미니앱을 확인합니다. launcher PWA를 한 번 설치하고, 매 세션마다 QR 스캔.
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# vite.config.ts에 tunnel 옵션 추가 후:
|
|
46
|
+
pnpm dev:phone # AIT_TUNNEL=1 pnpm dev 와 동일
|
|
47
|
+
# 터미널에 QR 출력 → 폰 카메라로 스캔 → launcher PWA에서 자동 열림
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
사전: 폰에 `https://devtools.aitc.dev/launcher/` 를 홈 화면에 한 번 추가. 상세: [`docs/scenarios/env-2.md`](./docs/scenarios/env-2.md)
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
**환경 3 — intoss-private** (토스 WebView, HMR X, debug 전용)
|
|
55
|
+
|
|
56
|
+
실기기 토스 앱 WebView에서 dogfood 번들을 로드하고 MCP relay로 디버깅합니다.
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
devtools-mcp # MCP 서버 시작 → QR 출력
|
|
60
|
+
# ait build && ait deploy --scheme-only
|
|
61
|
+
# build_attach_url 호출 → QR 스캔 → 토스 앱 로드 + relay attach
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
HMR 없음(토스 WebView cold-load만). 상세: [`docs/scenarios/env-3.md`](./docs/scenarios/env-3.md)
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
**환경 4 — 배포된 앱 (LIVE)** (검수 통과 앱, HMR X, read-only debug)
|
|
69
|
+
|
|
70
|
+
검수를 통과하고 OPENED 상태인 실 출시 앱에 relay를 붙여 런타임을 관측합니다.
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
devtools-mcp # MCP 서버 시작
|
|
74
|
+
# build_attach_url 호출 → QR 스캔 → LIVE 앱 로드 + relay attach
|
|
75
|
+
# call_sdk / evaluate 는 side-effect 주의 (실유저 영향)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
상세: [`docs/scenarios/env-4.md`](./docs/scenarios/env-4.md)
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## 자주 겪는 문제 5가지
|
|
83
|
+
|
|
84
|
+
**"QR 창이 안 열림"**
|
|
85
|
+
|
|
86
|
+
`build_attach_url`을 먼저 호출하지 않았거나, GUI 없는 headless 환경에서 `open_in_browser`가 실패한 경우입니다. 터미널에 PNG 저장 경로가 출력됩니다 — 그 파일을 직접 열거나, 텍스트 QR을 터미널에서 스캔하세요. (관련: [#288](https://github.com/apps-in-toss-community/devtools/issues/288))
|
|
87
|
+
|
|
88
|
+
**"page 미attach" — list_pages가 빈 배열 반환**
|
|
89
|
+
|
|
90
|
+
relay에 붙은 페이지가 없는 상태입니다. `build_attach_url` → QR 스캔 순서로 폰을 다시 진입시키세요. MCP 에러 메시지가 "페이지가 attach 안 됨. build_attach_url → QR 스캔."으로 뜨면 이 케이스입니다.
|
|
91
|
+
|
|
92
|
+
**"tunnel down" — 터널 응답 없음 또는 timeout**
|
|
93
|
+
|
|
94
|
+
cloudflared quick tunnel은 수 시간 후 drop될 수 있습니다. `devtools-mcp` 프로세스를 재시작하면 새 tunnel URL이 발급됩니다. 재발급 후 QR을 다시 스캔하세요. (관련: [#290](https://github.com/apps-in-toss-community/devtools/issues/290))
|
|
95
|
+
|
|
96
|
+
**"page crash" — list_pages에 crashDetectedAt이 찍힘**
|
|
97
|
+
|
|
98
|
+
폰 측 페이지가 OOM·JS exception·native bridge crash로 죽은 상태입니다. 앱을 재실행 후 `build_attach_url` → QR 스캔으로 다시 attach하세요. (관련: [#265](https://github.com/apps-in-toss-community/devtools/issues/265))
|
|
99
|
+
|
|
100
|
+
**"SDK 부재" — window.__sdkCall 미주입**
|
|
101
|
+
|
|
102
|
+
`call_sdk` 호출 시 `ok: false, error: "window.__sdkCall is not available"` 에러가 뜨면 dogfood 빌드가 아닌 일반 번들이 로드된 것입니다. `__DEBUG_BUILD__` 플래그가 켜진 dogfood 채널로 재배포 후 다시 시도하세요. 환경 2(PWA)에서는 이 에러가 예상 결과입니다. (관련: [#285](https://github.com/apps-in-toss-community/devtools/issues/285))
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
21
106
|
## 설치
|
|
22
107
|
|
|
23
108
|
```bash
|
|
@@ -866,6 +951,24 @@ Turbopack은 unplugin을 지원하지 않으므로, `next.config.js`에서 `reso
|
|
|
866
951
|
import '@ait-co/devtools/panel';
|
|
867
952
|
```
|
|
868
953
|
|
|
954
|
+
### `devtools-mcp` — 이미 실행 중인 세션이 있을 때
|
|
955
|
+
|
|
956
|
+
두 번째 `devtools-mcp` 실행 시 "기존 debug-mode 세션이 이미 실행 중" 메시지가 stderr에 출력됩니다. 기존 PID와 wssUrl이 함께 표시됩니다.
|
|
957
|
+
|
|
958
|
+
회복 방법:
|
|
959
|
+
|
|
960
|
+
```bash
|
|
961
|
+
# 기존 세션을 직접 종료
|
|
962
|
+
kill <PID>
|
|
963
|
+
|
|
964
|
+
# 또는 --force 플래그로 기존 세션을 종료하고 takeover
|
|
965
|
+
npx @ait-co/devtools devtools-mcp --force
|
|
966
|
+
# local 모드라면:
|
|
967
|
+
npx @ait-co/devtools devtools-mcp --target=local --force
|
|
968
|
+
```
|
|
969
|
+
|
|
970
|
+
`--takeover`도 `--force`의 alias로 동일하게 동작합니다.
|
|
971
|
+
|
|
869
972
|
## MCP Server
|
|
870
973
|
|
|
871
974
|
AI 코딩 에이전트(Claude Code, Cursor 등)가 [MCP(Model Context Protocol)](https://modelcontextprotocol.io/)를
|
|
@@ -873,13 +976,13 @@ AI 코딩 에이전트(Claude Code, Cursor 등)가 [MCP(Model Context Protocol)]
|
|
|
873
976
|
|
|
874
977
|
로컬 브라우저(환경 1)와 폰 토스 앱 WebView(환경 2·3)는 둘 다 CDP를 말하므로 모든 tool이 두 환경에서 동일하게 동작합니다 — 갈라지는 건 attach 전략(`--target=relay` vs `--target=local`)뿐입니다.
|
|
875
978
|
|
|
876
|
-
| 모드 + 타깃 | 호출 | 대상 | tool |
|
|
877
|
-
|
|
878
|
-
| `--mode=debug --target=relay` (기본값) | `devtools-mcp` | 폰 안
|
|
879
|
-
| `--mode=debug --target=local` | `devtools-mcp --target=local` | MCP가 직접 기동한 로컬 Chromium (CDP direct-attach, relay 불필요, 환경 1) | 동일 |
|
|
880
|
-
| `--mode=dev` | `devtools-mcp --mode=dev` | 실행 중인 Vite dev server의 mock state | `AIT.*` (+ `devtools_get_mock_state` alias) |
|
|
979
|
+
| 모드 + 타깃 | 호출 | 환경 변수 | 대상 | tool |
|
|
980
|
+
|---|---|---|---|---|
|
|
981
|
+
| `--mode=debug --target=relay` (기본값) | `MCP_ENV=relay devtools-mcp` | `MCP_ENV=relay` 권장 | 폰 안 dogfood 번들 (CDP/Chii relay + cloudflared 터널, 환경 2·3) | console/network/page + DOM/snapshot/screenshot + `AIT.*` |
|
|
982
|
+
| `--mode=debug --target=local` | `devtools-mcp --target=local` | `MCP_ENV=mock` (자동) | MCP가 직접 기동한 로컬 Chromium (CDP direct-attach, relay 불필요, 환경 1) | 동일 |
|
|
983
|
+
| `--mode=dev` | `devtools-mcp --mode=dev` | `MCP_ENV=mock` (자동) | 실행 중인 Vite dev server의 mock state (AIT.* 전용, CDP 없음) | `AIT.*` (+ `devtools_get_mock_state` alias) |
|
|
881
984
|
|
|
882
|
-
`--target=local`은 `AIT_DEVTOOLS_URL`(기본 `http://localhost:5173`)을 열고 로컬 Chromium에 CDP direct-attach합니다 — relay나 터널이 필요하지 않습니다. `--mode=dev`는 Vite dev server의 mock-state HTTP endpoint를
|
|
985
|
+
`--target=local`은 `AIT_DEVTOOLS_URL`(기본 `http://localhost:5173`)을 열고 로컬 Chromium에 CDP direct-attach합니다 — relay나 터널이 필요하지 않습니다. `--mode=dev`는 Vite dev server의 mock-state HTTP endpoint를 읽으며 CDP tool은 제공하지 않습니다. 실기기(환경 3·4) 진입 시 `MCP_ENV=relay`를 명시하면 터널 감지 전 bootstrap 단계에서도 relay tool이 올바르게 노출됩니다.
|
|
883
986
|
|
|
884
987
|
### Debug 모드 (CDP via Chii)
|
|
885
988
|
|
|
@@ -902,12 +1005,17 @@ tunnel로 공개 `wss://*.trycloudflare.com` URL을 발급한 뒤 QR을 터미
|
|
|
902
1005
|
"mcpServers": {
|
|
903
1006
|
"ait-debug": {
|
|
904
1007
|
"command": "pnpm",
|
|
905
|
-
"args": ["exec", "devtools-mcp"]
|
|
1008
|
+
"args": ["exec", "devtools-mcp"],
|
|
1009
|
+
"env": {
|
|
1010
|
+
"MCP_ENV": "relay"
|
|
1011
|
+
}
|
|
906
1012
|
}
|
|
907
1013
|
}
|
|
908
1014
|
}
|
|
909
1015
|
```
|
|
910
1016
|
|
|
1017
|
+
`MCP_ENV=relay`를 명시하면 터널 URL 자동 감지 전에도 relay tool surface가 올바르게 노출됩니다.
|
|
1018
|
+
|
|
911
1019
|
| Tool | CDP / AIT 백킹 | 설명 |
|
|
912
1020
|
|---|---|---|
|
|
913
1021
|
| `list_console_messages` | `Runtime.consoleAPICalled` | 최근 console.log/warn/error 메시지 (level, text, timestamp, args) |
|
package/dist/mcp/cli.d.ts
CHANGED
|
@@ -21,6 +21,13 @@
|
|
|
21
21
|
*/
|
|
22
22
|
type Mode = 'debug' | 'dev';
|
|
23
23
|
type Target = 'relay' | 'local';
|
|
24
|
+
/**
|
|
25
|
+
* Returns `true` when `--force` or `--takeover` is present in argv.
|
|
26
|
+
*
|
|
27
|
+
* Both flags are accepted as aliases — `--force` is the short form listed in
|
|
28
|
+
* the `--help` output; `--takeover` is a longer synonym.
|
|
29
|
+
*/
|
|
30
|
+
declare function parseForce(argv: readonly string[]): boolean;
|
|
24
31
|
/** Parses `--mode=<value>` / `--mode <value>` from argv; default `debug`. */
|
|
25
32
|
declare function parseMode(argv: readonly string[]): Mode;
|
|
26
33
|
/**
|
|
@@ -32,5 +39,5 @@ declare function parseMode(argv: readonly string[]): Mode;
|
|
|
32
39
|
*/
|
|
33
40
|
declare function parseTarget(argv: readonly string[]): Target;
|
|
34
41
|
//#endregion
|
|
35
|
-
export { parseMode, parseTarget };
|
|
42
|
+
export { parseForce, parseMode, parseTarget };
|
|
36
43
|
//# sourceMappingURL=cli.d.ts.map
|
package/dist/mcp/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","names":[],"sources":["../../src/mcp/cli.ts"],"mappings":";;;;;;;;AA0BS;;;;;
|
|
1
|
+
{"version":3,"file":"cli.d.ts","names":[],"sources":["../../src/mcp/cli.ts"],"mappings":";;;;;;;;AA0BS;;;;;AAST;;;;;AAKA;;;KAdK,IAAA;AAAA,KACA,MAAA;AAsCL;;;;;;AAAA,iBA9BgB,UAAA,CAAW,IAAA;;iBAKX,SAAA,CAAU,IAAA,sBAA0B,IAAA;;;;;;;;iBAyBpC,WAAA,CAAY,IAAA,sBAA0B,MAAA"}
|