@lzear/repo-lint 4.2.2 → 4.3.0

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,15 +1,14 @@
1
1
  {
2
2
  "name": "@lzear/repo-lint",
3
- "version": "4.2.2",
3
+ "version": "4.3.0",
4
4
  "description": "Checks lzear repos against forge standards",
5
+ "license": "MIT",
5
6
  "repository": {
6
7
  "type": "git",
7
8
  "url": "git+https://github.com/lzear/forge.git",
8
9
  "directory": "packages/repo-lint"
9
10
  },
10
11
  "author": "lzear",
11
- "license": "MIT",
12
- "sideEffects": false,
13
12
  "type": "module",
14
13
  "exports": {
15
14
  ".": {
@@ -18,9 +17,14 @@
18
17
  }
19
18
  },
20
19
  "bin": "./dist/bin.js",
21
- "files": [
22
- "dist"
23
- ],
20
+ "sideEffects": false,
21
+ "engines": {
22
+ "node": ">=24"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "provenance": true
27
+ },
24
28
  "scripts": {
25
29
  "build": "tsup",
26
30
  "dev": "tsup --watch",
@@ -28,25 +32,30 @@
28
32
  "test:coverage": "vitest run --coverage",
29
33
  "typecheck": "tsc --noEmit"
30
34
  },
35
+ "files": [
36
+ "dist"
37
+ ],
38
+ "keywords": [
39
+ "checks",
40
+ "ci",
41
+ "compliance",
42
+ "lint",
43
+ "repo"
44
+ ],
31
45
  "dependencies": {
32
46
  "@arethetypeswrong/cli": "^0.18",
33
47
  "knip": "^6",
34
48
  "npm-check-updates": "^22",
35
- "publint": "^0.3"
49
+ "publint": "^0.3",
50
+ "semver": "^7",
51
+ "sherif": "^1"
36
52
  },
37
53
  "devDependencies": {
38
- "@lzear/configs": "4.2.2",
39
- "@types/node": "^25",
54
+ "@lzear/configs": "4.3.0",
55
+ "@types/node": "^26",
56
+ "@types/semver": "^7",
40
57
  "@vitest/coverage-v8": "^4",
41
58
  "tsup": "^8",
42
- "typescript": "^6",
43
59
  "vitest": "^4"
44
- },
45
- "engines": {
46
- "node": ">=24"
47
- },
48
- "publishConfig": {
49
- "access": "public",
50
- "provenance": true
51
60
  }
52
61
  }