@theholocron/eslint-config 7.0.0 → 7.1.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.
Files changed (1) hide show
  1. package/package.json +13 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/eslint-config",
3
- "version": "7.0.0",
3
+ "version": "7.1.0",
4
4
  "description": "A ESLint configuration for writing well-formed Javascript within the Galaxy.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/eslint-config#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",
@@ -24,7 +24,12 @@
24
24
  "devDependencies": {
25
25
  "tsdown": "^0.22.8",
26
26
  "typescript": "^5.9.3",
27
- "@theholocron/tsconfig": "7.0.0"
27
+ "vitest": "^4.0.0",
28
+ "@eslint/js": "^10.0.0",
29
+ "globals": "^17.0.0",
30
+ "typescript-eslint": "^8.0.0",
31
+ "@theholocron/tsconfig": "7.1.0",
32
+ "@theholocron/vitest-config": "7.1.0"
28
33
  },
29
34
  "exports": {
30
35
  ".": {
@@ -129,12 +134,17 @@
129
134
  "optional": true
130
135
  }
131
136
  },
137
+ "engines": {
138
+ "node": ">=22.0.0"
139
+ },
132
140
  "publishConfig": {
133
141
  "access": "public"
134
142
  },
135
143
  "releases": "https://github.com/theholocron/configs/releases",
136
144
  "wiki": "https://github.com/theholocron/configs/wiki",
137
145
  "scripts": {
138
- "build": "tsdown"
146
+ "build": "tsdown",
147
+ "typecheck": "tsc --noEmit",
148
+ "test": "vitest run"
139
149
  }
140
150
  }