-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "browser-echo-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r --filter @browser-echo/* run build",
"dev": "pnpm -r --filter @browser-echo/* run dev",
"clean": "pnpm -r --filter @browser-echo/* run clean",
"cleanup": "pnpm tsx scripts/cleanup.ts",
"test": "vitest run --reporter=dot",
"test:watch": "vitest",
"lint": "eslint .",
"mcp": "node packages/mcp/dist/cli.mjs",
"mcp:port": "node packages/mcp/dist/cli.mjs --port",
"mcp:dev": "pnpm tsx packages/mcp/src/index.ts",
"mcp:build": "pnpm --filter @browser-echo/mcp run build",
"install:packages": "pnpm --filter './packages/*' install",
"install:examples": "pnpm --filter './example/*' install",
"install:all": "pnpm install:packages && pnpm build && pnpm install:examples"
},
"devDependencies": {
"@types/node": "24.12.4",
"eslint": "9.39.4",
"jsdom": "26.1.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"unbuild": "3.6.1",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
"dependencies": {
"glob": "11.1.0"
},
"pnpm": {
"overrides": {
"mkdist>esbuild": "0.25.12",
"next>postcss": "8.5.14",
"unbuild>esbuild": "0.25.12"
}
}
}