dev3000 0.0.7 → 0.0.8
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 +5 -5
- package/mcp-server/package.json +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@ Captures your web app's complete development timeline - server logs, browser eve
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm install dev3000
|
|
9
|
-
|
|
8
|
+
pnpm install -g dev3000
|
|
9
|
+
dev3000
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
## What it does
|
|
@@ -36,7 +36,7 @@ Or use the MCP server at `http://localhost:3684/api/mcp/http` for advanced query
|
|
|
36
36
|
## Options
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
|
|
39
|
+
dev3000 [options]
|
|
40
40
|
|
|
41
41
|
-p, --port <port> Your app's port (default: 3000)
|
|
42
42
|
--mcp-port <port> MCP server port (default: 3684)
|
|
@@ -48,10 +48,10 @@ pnpx dev3000 [options]
|
|
|
48
48
|
Examples:
|
|
49
49
|
```bash
|
|
50
50
|
# Custom port for Vite
|
|
51
|
-
|
|
51
|
+
dev3000 --port 5173
|
|
52
52
|
|
|
53
53
|
# Persistent login state
|
|
54
|
-
|
|
54
|
+
dev3000 --profile-dir ./chrome-profile
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
---
|
package/mcp-server/package.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
6
|
-
"dev": "next dev --turbopack",
|
|
7
|
-
"build": "next build --turbopack",
|
|
8
|
-
"start": "next start"
|
|
6
|
+
"dev": "pnpx next dev --turbopack",
|
|
7
|
+
"build": "pnpx next build --turbopack",
|
|
8
|
+
"start": "pnpx next start"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"next": "^15.5.1-canary.13",
|