@violetflux/eslint-plugin-kerros 0.2.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 ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@violetflux/eslint-plugin-kerros",
3
+ "version": "0.2.0",
4
+ "description": "Type-aware ESLint rules for Kerros stores.",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "main": "./dist/index.cjs",
11
+ "module": "./dist/index.mjs",
12
+ "types": "./dist/index.d.mts",
13
+ "exports": {
14
+ ".": {
15
+ "import": {
16
+ "types": "./dist/index.d.mts",
17
+ "default": "./dist/index.mjs"
18
+ },
19
+ "require": {
20
+ "types": "./dist/index.d.cts",
21
+ "default": "./dist/index.cjs"
22
+ }
23
+ }
24
+ },
25
+ "scripts": {
26
+ "build": "tsdown",
27
+ "lint": "eslint src tests",
28
+ "test": "vitest run",
29
+ "typecheck": "tsc --noEmit",
30
+ "prepack": "bun run build"
31
+ },
32
+ "peerDependencies": {
33
+ "@typescript-eslint/parser": "^8.0.0",
34
+ "@violetflux/kerros": "^0.2.0",
35
+ "eslint": "^9.0.0 || ^10.0.0",
36
+ "typescript": "^5.0.0"
37
+ },
38
+ "dependencies": {
39
+ "@typescript-eslint/utils": "8.64.0"
40
+ },
41
+ "devDependencies": {
42
+ "@typescript-eslint/parser": "8.64.0",
43
+ "@typescript-eslint/rule-tester": "8.64.0",
44
+ "@types/node": "26.1.1",
45
+ "eslint": "10.7.0",
46
+ "tsdown": "0.22.9",
47
+ "typescript": "5.9.3",
48
+ "vitest": "4.1.10"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public"
52
+ }
53
+ }