@presto1314w/vite-devtools-browser 0.3.3 → 0.3.5

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": "@presto1314w/vite-devtools-browser",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "Runtime diagnostics CLI for Vite apps with event-stream correlation, HMR diagnosis, framework inspection, and mapped errors",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -35,6 +35,22 @@
35
35
  "bin": {
36
36
  "vite-browser": "dist/cli.js"
37
37
  },
38
+ "scripts": {
39
+ "start": "node --import tsx src/cli.ts",
40
+ "dev": "tsx src/cli.ts",
41
+ "docs:dev": "vitepress dev docs",
42
+ "docs:build": "vitepress build docs",
43
+ "docs:preview": "vitepress preview docs",
44
+ "typecheck": "tsc --noEmit",
45
+ "build": "tsc -p tsconfig.build.json",
46
+ "prepack": "pnpm build",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest",
49
+ "test:coverage": "vitest run --coverage",
50
+ "test:evals": "vitest run --dir test/evals",
51
+ "test:evals:ci": "vitest run --dir test/evals --coverage --reporter=default",
52
+ "test:evals:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts"
53
+ },
38
54
  "dependencies": {
39
55
  "playwright": "^1.50.0",
40
56
  "source-map-js": "^1.2.1"
@@ -42,22 +58,12 @@
42
58
  "devDependencies": {
43
59
  "@types/node": "^22.0.0",
44
60
  "@vitest/coverage-v8": "^4.0.18",
45
- "@vue/devtools-kit": "^7.3.2",
46
61
  "@vue/devtools-api": "^7.3.2",
62
+ "@vue/devtools-kit": "^7.3.2",
47
63
  "tsx": "^4.20.6",
48
64
  "typescript": "^5.7.0",
65
+ "vitepress": "^1.6.4",
49
66
  "vitest": "^4.0.16"
50
67
  },
51
- "scripts": {
52
- "start": "node --import tsx src/cli.ts",
53
- "dev": "tsx src/cli.ts",
54
- "typecheck": "tsc --noEmit",
55
- "build": "tsc -p tsconfig.build.json",
56
- "test": "vitest run",
57
- "test:watch": "vitest",
58
- "test:coverage": "vitest run --coverage",
59
- "test:evals": "vitest run --dir test/evals",
60
- "test:evals:ci": "vitest run --dir test/evals --coverage --reporter=default",
61
- "test:evals:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts"
62
- }
63
- }
68
+ "packageManager": "pnpm@10.29.2"
69
+ }