dev3000 0.0.177 → 0.0.178
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.md +136 -154
- package/bin/dev3000 +30 -5
- package/dist/cdp-monitor.d.ts.map +1 -1
- package/dist/cdp-monitor.js.map +1 -1
- package/dist/cli.js +20 -6
- package/dist/cli.js.map +1 -1
- package/dist/commands/resume.js.map +1 -1
- package/dist/commands/status.d.ts +21 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +44 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/components/PackageSelector.js +1 -1
- package/dist/constants/log-colors.d.ts.map +1 -1
- package/dist/dev-environment.d.ts +6 -4
- package/dist/dev-environment.d.ts.map +1 -1
- package/dist/dev-environment.js +42 -39
- package/dist/dev-environment.js.map +1 -1
- package/dist/portless.d.ts +15 -11
- package/dist/portless.d.ts.map +1 -1
- package/dist/portless.js +70 -81
- package/dist/portless.js.map +1 -1
- package/dist/screencast-manager.d.ts.map +1 -1
- package/dist/screencast-manager.js.map +1 -1
- package/dist/services/parsers/error-detectors/base.d.ts.map +1 -1
- package/dist/services/parsers/error-detectors/nextjs.d.ts.map +1 -1
- package/dist/services/parsers/log-parsers/standard.d.ts.map +1 -1
- package/dist/services/parsers/output-processor.d.ts.map +1 -1
- package/dist/services/parsers/output-processor.js.map +1 -1
- package/dist/skills/d3k/internal-skill.md +82 -115
- package/dist/tui-interface-impl.js +1 -1
- package/dist/tui-interface-opentui.js.map +1 -1
- package/dist/tui-interface.d.ts.map +1 -1
- package/dist/utils/agent-browser.js.map +1 -1
- package/dist/utils/project-detector.js.map +1 -1
- package/dist/utils/project-metadata.js.map +1 -1
- package/dist/utils/project-name.js.map +1 -1
- package/dist/utils/session.d.ts +5 -0
- package/dist/utils/session.d.ts.map +1 -1
- package/dist/utils/session.js +1 -1
- package/dist/utils/session.js.map +1 -1
- package/dist/utils/skill-installer.js.map +1 -1
- package/dist/utils/timestamp.js.map +1 -1
- package/dist/utils/tmux-helpers.d.ts.map +1 -1
- package/dist/utils/version-check.js.map +1 -1
- package/package.json +11 -10
package/README.md
CHANGED
|
@@ -1,223 +1,205 @@
|
|
|
1
1
|
# d3k (dev3000)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
d3k is an agent-first local web debugging runtime. It starts your dev server, opens a monitored browser with a project-stable Chrome profile, and gives your coding agent one timeline of server logs, browser errors, network activity, interactions, and screenshots.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Every app gets a stable Portless URL by default, so browser state and callbacks do not move when the underlying development port changes.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
The primary interface is the d3k skill: tell your agent what you want, and let it own the runtime.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
d3k
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
You can also install with npm or pnpm if you prefer — bun is recommended.
|
|
15
|
-
|
|
16
|
-
Select an AI agent (Claude, Codex, etc.) and start debugging. Tell your agent: "fix my app"
|
|
9
|
+
> "Let me test this project with d3k."
|
|
10
|
+
>
|
|
11
|
+
> "Debug the checkout flow with d3k."
|
|
12
|
+
>
|
|
13
|
+
> "Run this app with d3k and watch for errors while I reproduce the bug."
|
|
17
14
|
|
|
18
|
-
|
|
15
|
+
The TUI is still available for people who want a standalone terminal dashboard, but it is not required for the agent workflow.
|
|
19
16
|
|
|
20
|
-
|
|
21
|
-
- tmux (for split-screen mode with AI agents)
|
|
17
|
+
## Install
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
Node.js 24 or newer is required.
|
|
24
20
|
|
|
25
|
-
|
|
21
|
+
Install the runtime globally:
|
|
26
22
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
- Automatic screenshots (navigation, errors, interactions)
|
|
31
|
-
- User interactions (clicks, form submissions)
|
|
32
|
-
|
|
33
|
-
Everything is saved to timestamped logs that AI assistants can read to understand what went wrong and suggest fixes.
|
|
34
|
-
|
|
35
|
-
## CLI Commands
|
|
23
|
+
```bash
|
|
24
|
+
bun install -g dev3000
|
|
25
|
+
```
|
|
36
26
|
|
|
37
|
-
|
|
27
|
+
npm also works:
|
|
38
28
|
|
|
39
29
|
```bash
|
|
40
|
-
|
|
41
|
-
d3k --with-agent claude # Start with Claude in split-screen mode
|
|
42
|
-
d3k --no-agent # Start d3k standalone (no agent)
|
|
30
|
+
npm install -g dev3000
|
|
43
31
|
```
|
|
44
32
|
|
|
45
|
-
|
|
33
|
+
Install the d3k skill for your coding agents:
|
|
46
34
|
|
|
47
35
|
```bash
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
d3k errors --context # Show interactions before each error (for replay)
|
|
51
|
-
d3k errors --all # Show all errors from the session
|
|
36
|
+
bunx skills add vercel-labs/dev3000 --skill d3k --agent '*' -g -y
|
|
37
|
+
```
|
|
52
38
|
|
|
53
|
-
d3k
|
|
54
|
-
d3k logs --type browser # Show only browser logs
|
|
55
|
-
d3k logs --type server # Show only server logs
|
|
56
|
-
d3k logs -n 100 # Show last 100 lines
|
|
39
|
+
The skill teaches agents to start d3k non-interactively, retain the background process, reuse the managed browser, and inspect the unified evidence instead of launching a separate dev server or browser.
|
|
57
40
|
|
|
58
|
-
|
|
59
|
-
d3k fix --focus build # Focus on build/compilation errors
|
|
60
|
-
d3k fix --time 30 # Analyze last 30 minutes (default: 10)
|
|
41
|
+
## The Agent Workflow
|
|
61
42
|
|
|
62
|
-
|
|
63
|
-
d3k crawl --depth all # Exhaustive crawl (default: 1 level)
|
|
43
|
+
When you ask to use d3k, the agent should:
|
|
64
44
|
|
|
65
|
-
d3k
|
|
66
|
-
|
|
45
|
+
1. Run `d3k status --json` and reuse an active project session.
|
|
46
|
+
2. Start `d3k --no-agent --no-tui -t` in a retained background tool session when needed.
|
|
47
|
+
3. Wait for d3k to report a ready Portless URL and managed browser.
|
|
48
|
+
4. Either hand the headed browser to you or drive it with `d3k agent-browser`, depending on your request.
|
|
49
|
+
5. Read `d3k errors --context` and the unified logs after reproduction.
|
|
50
|
+
6. Keep the same runtime and project-stable Chrome profile alive across edits and retests.
|
|
67
51
|
|
|
68
|
-
|
|
52
|
+
That gives the user one stable URL, one browser, one evidence stream, and one dev server.
|
|
69
53
|
|
|
70
|
-
|
|
71
|
-
d3k skill [name] # Get skill content or list available skills
|
|
72
|
-
d3k upgrade # Upgrade d3k to the latest version
|
|
73
|
-
d3k agent-browser # Run the bundled agent-browser CLI
|
|
74
|
-
```
|
|
54
|
+
### "Let me test" vs. "Test this"
|
|
75
55
|
|
|
76
|
-
|
|
56
|
+
"Let me test with d3k" means the agent prepares the headed monitored browser and hands control to you. It should wait while you reproduce the issue, then inspect what d3k captured.
|
|
77
57
|
|
|
78
|
-
|
|
79
|
-
d3k --help # Show all options
|
|
80
|
-
```
|
|
58
|
+
"Test/debug this with d3k" means the agent can drive the managed browser and investigate autonomously.
|
|
81
59
|
|
|
82
|
-
|
|
83
|
-
|--------|-------------|
|
|
84
|
-
| `-p, --port <port>` | Development server port (auto-detected) |
|
|
85
|
-
| `-s, --script <script>` | Script to run (e.g. dev, main.py) |
|
|
86
|
-
| `-c, --command <command>` | Custom command (overrides auto-detection) |
|
|
87
|
-
| `--browser <path>` | Path to browser executable (Chrome, Arc, etc.) |
|
|
88
|
-
| `--profile-dir <dir>` | Chrome profile directory |
|
|
89
|
-
| `--servers-only` | Run servers only, skip browser launch |
|
|
90
|
-
| `--headless` | Run browser in headless mode (for CI) |
|
|
91
|
-
| `--debug` | Enable debug logging (disables TUI) |
|
|
92
|
-
| `-t, --tail` | Output logfile to terminal (like tail -f) |
|
|
93
|
-
| `--no-tui` | Disable TUI, use standard terminal output |
|
|
94
|
-
| `--with-agent <cmd>` | Run agent in split-screen mode (requires tmux) |
|
|
95
|
-
| `--no-agent` | Skip agent selection, run standalone |
|
|
96
|
-
| `--plugin-react-scan` | Enable react-scan performance monitoring |
|
|
97
|
-
| `--date-time <format>` | Timestamp format: 'local' or 'utc' |
|
|
98
|
-
|
|
99
|
-
## How It Works
|
|
100
|
-
|
|
101
|
-
1. **Start d3k** - It detects your project type and starts the dev server
|
|
102
|
-
2. **Browser monitoring** - A browser opens and monitors your app via Chrome DevTools Protocol
|
|
103
|
-
3. **Capture everything** - Logs, errors, network requests, screenshots are saved
|
|
104
|
-
4. **AI reads logs** - Your AI agent can read `~/.d3k/{project}/d3k.log` to understand issues
|
|
105
|
-
5. **Fix with context** - The AI has full context to suggest accurate fixes
|
|
106
|
-
|
|
107
|
-
## File Locations
|
|
108
|
-
|
|
109
|
-
| What | Where |
|
|
110
|
-
|------|-------|
|
|
111
|
-
| Logs | `~/.d3k/{project}/d3k.log` |
|
|
112
|
-
| Screenshots | `~/.d3k/{project}/screenshots/` |
|
|
113
|
-
| Chrome profile | `~/.d3k/{project}/chrome-profile/` |
|
|
114
|
-
| Session info | `~/.d3k/{project}/session.json` |
|
|
115
|
-
| Crash logs | `~/.d3k/crash.log` |
|
|
116
|
-
|
|
117
|
-
## Browser Options
|
|
118
|
-
|
|
119
|
-
### Chrome (Default)
|
|
120
|
-
|
|
121
|
-
d3k launches Chrome by default. Each project gets a dedicated Chrome profile that preserves login state, cookies, and local storage.
|
|
122
|
-
|
|
123
|
-
### Arc Browser
|
|
60
|
+
## Agent Commands
|
|
124
61
|
|
|
125
62
|
```bash
|
|
126
|
-
|
|
63
|
+
# Is this project's runtime ready?
|
|
64
|
+
d3k status --json
|
|
65
|
+
|
|
66
|
+
# Start the runtime manually in agent-safe mode
|
|
67
|
+
d3k --no-agent --no-tui -t
|
|
68
|
+
|
|
69
|
+
# Inspect unified evidence
|
|
70
|
+
d3k errors --context
|
|
71
|
+
d3k logs -n 200
|
|
72
|
+
d3k logs --type browser
|
|
73
|
+
d3k logs --type server
|
|
74
|
+
|
|
75
|
+
# Drive the exact browser d3k is monitoring
|
|
76
|
+
d3k agent-browser snapshot -i
|
|
77
|
+
d3k agent-browser click @e2
|
|
78
|
+
d3k agent-browser fill @e3 "text"
|
|
79
|
+
d3k agent-browser --require-d3k-browser open http://localhost:3000
|
|
127
80
|
```
|
|
128
81
|
|
|
129
|
-
|
|
82
|
+
Do not run `npm run dev` or `bun run dev` alongside d3k. d3k is the dev-server owner for the session.
|
|
130
83
|
|
|
131
|
-
|
|
132
|
-
# Brave
|
|
133
|
-
d3k --browser '/Applications/Brave Browser.app/Contents/MacOS/Brave Browser'
|
|
84
|
+
Portless is automatic. Use `--no-portless` or `PORTLESS=0` only when direct localhost routing is specifically required. If Portless cannot initialize, d3k falls back to localhost instead of blocking startup.
|
|
134
85
|
|
|
135
|
-
|
|
136
|
-
d3k --browser '/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge'
|
|
137
|
-
```
|
|
86
|
+
## Why the Managed Browser Matters
|
|
138
87
|
|
|
139
|
-
|
|
88
|
+
Each project gets a persistent Chrome profile under `~/.d3k/<project>/chrome-profile/`. Login state, cookies, and local storage survive across debugging sessions.
|
|
140
89
|
|
|
141
|
-
|
|
90
|
+
d3k also connects browser activity to server output, so an agent can see the interaction that preceded an error instead of reasoning from disconnected terminal and browser snapshots.
|
|
142
91
|
|
|
143
|
-
|
|
144
|
-
d3k --servers-only
|
|
145
|
-
```
|
|
92
|
+
For OAuth and other auth-sensitive flows, let d3k launch Chrome. A separate Playwright, browser MCP, raw Chrome, or custom `agent-browser --profile` session is a different browser identity and can break sign-in flows.
|
|
146
93
|
|
|
147
|
-
|
|
94
|
+
## What d3k Captures
|
|
148
95
|
|
|
149
|
-
|
|
96
|
+
- Development-server output
|
|
97
|
+
- Browser console messages and exceptions
|
|
98
|
+
- Network requests and responses
|
|
99
|
+
- User interactions
|
|
100
|
+
- Navigation and error screenshots
|
|
101
|
+
- Chrome DevTools Protocol events
|
|
102
|
+
- A session manifest that agents can discover with `d3k status --json`
|
|
150
103
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
104
|
+
Artifacts are stored per project:
|
|
105
|
+
|
|
106
|
+
| Artifact | Location |
|
|
107
|
+
| --- | --- |
|
|
108
|
+
| Active session | `~/.d3k/<project>/session.json` |
|
|
109
|
+
| Consolidated log | `~/.d3k/<project>/d3k.log` or `logs/` |
|
|
110
|
+
| Screenshots | `~/.d3k/<project>/screenshots/` |
|
|
111
|
+
| Chrome profile | `~/.d3k/<project>/chrome-profile/` |
|
|
112
|
+
| Crash log | `~/.d3k/crash.log` |
|
|
154
113
|
|
|
155
|
-
##
|
|
114
|
+
## Standalone TUI
|
|
156
115
|
|
|
157
|
-
d3k
|
|
116
|
+
Run `d3k` directly when you want the interactive terminal experience:
|
|
158
117
|
|
|
159
118
|
```bash
|
|
160
|
-
d3k
|
|
161
|
-
d3k --with-agent codex # OpenAI Codex
|
|
162
|
-
d3k --with-agent opencode # OpenCode
|
|
119
|
+
d3k
|
|
163
120
|
```
|
|
164
121
|
|
|
165
|
-
|
|
166
|
-
- tmux installed (`brew install tmux` on macOS)
|
|
167
|
-
|
|
168
|
-
Controls:
|
|
169
|
-
- `Ctrl+B Left/Right` - Switch focus between panes
|
|
170
|
-
- `Ctrl+C` in either pane - Exit both
|
|
122
|
+
You can also launch an agent beside the TUI in tmux:
|
|
171
123
|
|
|
172
|
-
|
|
124
|
+
```bash
|
|
125
|
+
d3k --with-agent claude
|
|
126
|
+
d3k --with-agent codex
|
|
127
|
+
d3k --with-agent opencode
|
|
128
|
+
```
|
|
173
129
|
|
|
174
|
-
|
|
130
|
+
The split-screen workflow requires tmux. The agent-first background workflow does not.
|
|
175
131
|
|
|
176
|
-
|
|
177
|
-
- **Python**: Django, Flask, FastAPI
|
|
178
|
-
- **Ruby**: Rails
|
|
179
|
-
- **Any other** web framework with a dev server
|
|
132
|
+
## Runtime Options
|
|
180
133
|
|
|
181
|
-
|
|
134
|
+
```bash
|
|
135
|
+
d3k --help
|
|
136
|
+
```
|
|
182
137
|
|
|
183
|
-
|
|
138
|
+
| Option | Purpose |
|
|
139
|
+
| --- | --- |
|
|
140
|
+
| `-p, --port <port>` | Override the detected dev-server port |
|
|
141
|
+
| `-s, --script <script>` | Override the detected package script |
|
|
142
|
+
| `-c, --command <command>` | Run a custom dev-server command |
|
|
143
|
+
| `--app-url <url>` | Open a specific URL in the managed browser |
|
|
144
|
+
| `--profile-dir <dir>` | Override the project Chrome profile |
|
|
145
|
+
| `--no-portless` | Disable the default stable Portless URL |
|
|
146
|
+
| `--headless` | Run Chrome headlessly for CI |
|
|
147
|
+
| `--servers-only` | Intentionally disable browser monitoring |
|
|
148
|
+
| `--no-tui` | Disable the interactive dashboard |
|
|
149
|
+
| `--no-agent` | Skip the standalone agent-selection prompt |
|
|
150
|
+
| `-t, --tail` | Stream the consolidated log |
|
|
151
|
+
| `--debug` | Print verbose runtime diagnostics |
|
|
152
|
+
|
|
153
|
+
Prefer auto-detection. Use overrides only when the project has an unusual dev command, port, or target URL.
|
|
154
|
+
|
|
155
|
+
## Diagnostic Commands
|
|
184
156
|
|
|
185
|
-
|
|
157
|
+
```bash
|
|
158
|
+
d3k errors
|
|
159
|
+
d3k errors --context
|
|
160
|
+
d3k errors --all
|
|
186
161
|
|
|
187
|
-
|
|
162
|
+
d3k logs
|
|
163
|
+
d3k logs --type browser
|
|
164
|
+
d3k logs --type server
|
|
165
|
+
d3k logs --json
|
|
188
166
|
|
|
189
|
-
|
|
167
|
+
d3k fix
|
|
168
|
+
d3k fix --focus build
|
|
190
169
|
|
|
191
|
-
|
|
170
|
+
d3k crawl
|
|
171
|
+
d3k crawl --depth all
|
|
172
|
+
```
|
|
192
173
|
|
|
193
|
-
|
|
174
|
+
## Supported Projects
|
|
194
175
|
|
|
195
|
-
|
|
176
|
+
d3k detects common web projects, including:
|
|
196
177
|
|
|
197
|
-
|
|
178
|
+
- Next.js, Vite, React, Vue, Svelte, and Astro
|
|
179
|
+
- Django, Flask, and FastAPI
|
|
180
|
+
- Rails
|
|
181
|
+
- Custom servers supplied through `--command`
|
|
198
182
|
|
|
199
183
|
## Development
|
|
200
184
|
|
|
201
|
-
|
|
202
|
-
# Install dependencies
|
|
203
|
-
bun install
|
|
204
|
-
|
|
205
|
-
# Run locally
|
|
206
|
-
bun run dev
|
|
185
|
+
Use d3k itself as the local runtime for this repository:
|
|
207
186
|
|
|
208
|
-
|
|
209
|
-
|
|
187
|
+
```bash
|
|
188
|
+
d3k --no-agent --no-tui -t
|
|
189
|
+
```
|
|
210
190
|
|
|
211
|
-
|
|
212
|
-
bun run test
|
|
191
|
+
After code changes:
|
|
213
192
|
|
|
214
|
-
|
|
193
|
+
```bash
|
|
215
194
|
bun run lint
|
|
195
|
+
bun run typecheck
|
|
216
196
|
```
|
|
217
197
|
|
|
218
|
-
|
|
198
|
+
For CLI or TUI changes under `src/`:
|
|
219
199
|
|
|
220
|
-
|
|
200
|
+
```bash
|
|
201
|
+
bun run canary
|
|
202
|
+
```
|
|
221
203
|
|
|
222
204
|
## License
|
|
223
205
|
|
package/bin/dev3000
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* pre-compiled binary from the platform-specific optional dependency.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { spawn } from "child_process"
|
|
10
10
|
import { existsSync } from "fs"
|
|
11
11
|
import { createRequire } from "module"
|
|
12
12
|
import { arch, platform } from "os"
|
|
@@ -82,14 +82,39 @@ function findBinary() {
|
|
|
82
82
|
function main() {
|
|
83
83
|
const binPath = findBinary()
|
|
84
84
|
|
|
85
|
-
//
|
|
86
|
-
|
|
85
|
+
// Keep the JavaScript launcher alive so it can forward terminal signals to
|
|
86
|
+
// the compiled runtime. This matters when the runtime owns detached child
|
|
87
|
+
// process groups such as Portless-managed dev servers.
|
|
88
|
+
const child = spawn(binPath, process.argv.slice(2), {
|
|
87
89
|
stdio: "inherit",
|
|
88
90
|
shell: false,
|
|
89
91
|
})
|
|
90
92
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
+
const forwardSignal = (signal) => {
|
|
94
|
+
if (!child.killed) {
|
|
95
|
+
child.kill(signal)
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
process.on("SIGINT", () => forwardSignal("SIGINT"))
|
|
100
|
+
process.on("SIGTERM", () => forwardSignal("SIGTERM"))
|
|
101
|
+
if (process.platform !== "win32") {
|
|
102
|
+
process.on("SIGHUP", () => forwardSignal("SIGHUP"))
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
child.on("error", (error) => {
|
|
106
|
+
console.error(`Failed to start d3k: ${error.message}`)
|
|
107
|
+
process.exit(1)
|
|
108
|
+
})
|
|
109
|
+
|
|
110
|
+
child.on("exit", (code, signal) => {
|
|
111
|
+
if (code !== null) {
|
|
112
|
+
process.exit(code)
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const signalExitCodes = { SIGINT: 130, SIGTERM: 143, SIGHUP: 129 }
|
|
116
|
+
process.exit(signalExitCodes[signal] || 1)
|
|
117
|
+
})
|
|
93
118
|
}
|
|
94
119
|
|
|
95
120
|
main()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cdp-monitor.d.ts","sourceRoot":"","sources":["../src/cdp-monitor.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,IAAI,CAAA;AAE9B,MAAM,WAAW,QAAQ;IACvB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC/B,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,SAAS,CAAA;IACb,SAAS,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,MAAM,EAAE,MAAM,CAAA;CACf;AAED,MAAM,WAAW,aAAa;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,oBAAoB,CAAC,EAAE,MAAM,CAAA;CAC9B;AA6DD,eAAO,MAAM,sCAAsC,UAIlD,CAAA;AAyFD,wBAAgB,4BAA4B,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAcvE;AAED,wBAAgB,wBAAwB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,GAAE,MAAyB,GAAG,MAAM,EAAE,CAS1G;AAwDD,wBAAgB,eAAe,CAC7B,OAAO,EAAE,aAAa,EAAE,EACxB,OAAO,GAAE;IACP,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;CAClB,GACL,aAAa,CA4Cf;AAED,qBAAa,UAAU;IACrB,OAAO,CAAC,OAAO,CAA4B;IAC3C,OAAO,CAAC,UAAU,CAA6B;IAC/C,OAAO,CAAC,SAAS,CAAe;IAChC,OAAO,CAAC,aAAa,CAA+C;IACpE,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,aAAa,CAAQ;IAC7B,OAAO,CAAC,MAAM,CAA2C;IACzD,OAAO,CAAC,KAAK,CAAiB;IAC9B,OAAO,CAAC,WAAW,CAAC,CAAQ;IAC5B,OAAO,CAAC,cAAc,CAAQ;IAC9B,OAAO,CAAC,eAAe,CAAI;IAC3B,OAAO,CAAC,gBAAgB,CAA8B;IACtD,OAAO,CAAC,eAAe,CAAiB;IACxC,OAAO,CAAC,MAAM,CAAsB;IACpC,OAAO,CAAC,kBAAkB,CAAY;IACtC,OAAO,CAAC,qBAAqB,CAAe;IAC5C,OAAO,CAAC,oBAAoB,CAAiB;IAC7C,OAAO,CAAC,UAAU,CAAyB;IAC3C,OAAO,CAAC,sBAAsB,CAA4B;IAC1D,OAAO,CAAC,aAAa,CAAC,CAAQ;IAC9B,OAAO,CAAC,aAAa,CAAC,CAAQ;IAC9B,OAAO,CAAC,eAAe,CAAC,CAAQ;IAChC,OAAO,CAAC,QAAQ,CAAiB;IACjC,OAAO,CAAC,SAAS,CAAC,CAA+B;IACjD,OAAO,CAAC,oBAAoB,CAAiB;IAC7C,OAAO,CAAC,wBAAwB,CAAY;IAC5C,OAAO,CAAC,eAAe,CAAuC;IAC9D,OAAO,CAAC,mBAAmB,CAAwC;
|
|
1
|
+
{"version":3,"file":"cdp-monitor.d.ts","sourceRoot":"","sources":["../src/cdp-monitor.ts"],"names":[],"mappings":"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"}
|