pkgviz 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/bin/pkgviz.ts +1 -1
  2. package/package.json +6 -5
package/bin/pkgviz.ts CHANGED
@@ -102,7 +102,7 @@ async function findFreePort(preferred?: number): Promise<number> {
102
102
  }
103
103
 
104
104
  function resolvePackageRoot(): string {
105
- // bin is at <pkgRoot>/bin/myapp.ts; step up to package root
105
+ // bin is at <pkgRoot>/bin/pkgviz.ts; step up to package root
106
106
  const here = fileURLToPath(new URL(import.meta.url));
107
107
  return resolve(dirname(here), '..');
108
108
  }
package/package.json CHANGED
@@ -4,7 +4,8 @@
4
4
  "pkgviz": "bin/pkgviz.ts"
5
5
  },
6
6
  "files": [
7
- "/bin", ".next"
7
+ "/bin",
8
+ ".next"
8
9
  ],
9
10
  "type": "module",
10
11
  "engines": {
@@ -12,7 +13,7 @@
12
13
  "bun": ">=1.2.18",
13
14
  "npm": ">=10.9.2"
14
15
  },
15
- "version": "0.1.0",
16
+ "version": "0.1.1",
16
17
  "scripts": {
17
18
  "dev": "next dev --turbopack",
18
19
  "build": "next build",
@@ -37,7 +38,8 @@
37
38
  "radix-ui": "^1.2.0",
38
39
  "react": "^19.0.0",
39
40
  "react-dom": "^19.0.0",
40
- "xml-js": "^1.6.11"
41
+ "xml-js": "^1.6.11",
42
+ "typescript": "^5"
41
43
  },
42
44
  "devDependencies": {
43
45
  "@eslint/eslintrc": "^3",
@@ -55,8 +57,7 @@
55
57
  "prettier": "^3.5.3",
56
58
  "tailwindcss": "^4.1.3",
57
59
  "tailwindcss-cli": "^0.1.2",
58
- "tsx": "^4.19.3",
59
- "typescript": "^5"
60
+ "tsx": "^4.19.3"
60
61
  },
61
62
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
62
63
  }