@westbayberry/dg 1.0.1 → 1.0.3

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,10 +1,10 @@
1
1
  {
2
2
  "name": "@westbayberry/dg",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Supply chain security scanner — scan npm dependencies in any CI or terminal",
5
5
  "bin": {
6
- "dependency-guardian": "dist/index.js",
7
- "dg": "dist/index.js"
6
+ "dependency-guardian": "dist/index.mjs",
7
+ "dg": "dist/index.mjs"
8
8
  },
9
9
  "files": [
10
10
  "dist"
@@ -24,7 +24,7 @@
24
24
  "access": "public"
25
25
  },
26
26
  "scripts": {
27
- "build": "npx ncc build src/bin.ts -o dist",
27
+ "build": "node build.mjs",
28
28
  "dev": "npx tsx src/bin.ts",
29
29
  "test": "vitest run",
30
30
  "prepublishOnly": "npm run build && npm test"
@@ -34,8 +34,16 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^20.0.0",
37
- "@vercel/ncc": "^0.38.4",
37
+ "@types/react": "^18.3.28",
38
+ "esbuild": "^0.25.12",
39
+ "ink-testing-library": "^4.0.0",
38
40
  "typescript": "^5.9.3",
39
41
  "vitest": "^3.0.0"
42
+ },
43
+ "dependencies": {
44
+ "chalk": "^4.1.2",
45
+ "ink": "^5.2.1",
46
+ "ink-spinner": "^5.0.0",
47
+ "react": "^18.3.1"
40
48
  }
41
49
  }