@westbayberry/dg 1.0.40 → 1.0.41

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 (5) hide show
  1. package/LICENSE +201 -0
  2. package/NOTICE +4 -0
  3. package/README.md +15 -0
  4. package/dist/index.mjs +50524 -2678
  5. package/package.json +11 -4
package/package.json CHANGED
@@ -1,15 +1,17 @@
1
1
  {
2
2
  "name": "@westbayberry/dg",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "Supply chain security scanner for npm and Python dependencies — detects malicious packages, typosquatting, dependency confusion, and 26+ attack patterns",
5
5
  "bin": {
6
6
  "dependency-guardian": "dist/index.mjs",
7
7
  "dg": "dist/index.mjs"
8
8
  },
9
9
  "files": [
10
- "dist"
10
+ "dist",
11
+ "LICENSE",
12
+ "NOTICE"
11
13
  ],
12
- "license": "UNLICENSED",
14
+ "license": "Apache-2.0",
13
15
  "author": "WestBayBerry",
14
16
  "homepage": "https://westbayberry.com",
15
17
  "repository": {
@@ -35,7 +37,8 @@
35
37
  "build": "node build.mjs",
36
38
  "dev": "npx tsx src/bin.ts",
37
39
  "test": "vitest run",
38
- "prepublishOnly": "npm run build && npm test"
40
+ "lint": "eslint src --ext .ts,.tsx",
41
+ "prepublishOnly": "npm run lint && npm test && npm run build"
39
42
  },
40
43
  "engines": {
41
44
  "node": ">=18"
@@ -43,12 +46,16 @@
43
46
  "devDependencies": {
44
47
  "@types/node": "^20.0.0",
45
48
  "@types/react": "^18.3.28",
49
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
50
+ "@typescript-eslint/parser": "^7.18.0",
46
51
  "esbuild": "^0.25.12",
52
+ "eslint": "^8.57.1",
47
53
  "ink-testing-library": "^4.0.0",
48
54
  "typescript": "^5.9.3",
49
55
  "vitest": "^3.0.0"
50
56
  },
51
57
  "dependencies": {
58
+ "@sentry/node": "^10.48.0",
52
59
  "chalk": "^4.1.2",
53
60
  "express": "^5.2.1",
54
61
  "ink": "^5.2.1",