@alien_intelligence/eslint-plugin-nitpicker 0.4.0 → 0.5.1

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,77 +1,77 @@
1
1
  {
2
- "name": "@alien_intelligence/eslint-plugin-nitpicker",
3
- "productName": "Nitpicker",
4
- "version": "0.4.0",
5
- "description": "A hyper-pedantic ESLint plugin that flags every stylistic and semantic nit, with AI-friendly fix context.",
6
- "author": "Alien <contact@alien.club> (https://www.alien.club/)",
7
- "license": "MIT",
8
- "private": false,
9
- "packageManager": "npm@11.4.2",
10
- "type": "module",
11
- "keywords": [
12
- "alien",
13
- "eslint",
14
- "eslintplugin",
15
- "eslint-plugin",
16
- "nitpicker",
17
- "linting",
18
- "code-style",
19
- "ai"
20
- ],
21
- "homepage": "https://github.com/the-alien-club/eslint-plugin-nitpicker",
22
- "repository": {
23
- "type": "git",
24
- "url": "git+https://github.com/the-alien-club/eslint-plugin-nitpicker.git"
25
- },
26
- "bugs": {
27
- "url": "https://github.com/the-alien-club/eslint-plugin-nitpicker/issues"
28
- },
29
- "publishConfig": {
30
- "registry": "https://registry.npmjs.org/",
31
- "access": "public",
32
- "tag": "latest"
33
- },
34
- "engines": {
35
- "node": ">=20.0.0"
36
- },
37
- "files": [
38
- "dist",
39
- "README.md",
40
- "LICENSE"
41
- ],
42
- "main": "./dist/index.js",
43
- "module": "./dist/index.js",
44
- "types": "./dist/index.d.ts",
45
- "exports": {
46
- ".": {
47
- "types": "./dist/index.d.ts",
48
- "import": "./dist/index.js",
49
- "default": "./dist/index.js"
2
+ "name": "@alien_intelligence/eslint-plugin-nitpicker",
3
+ "productName": "Nitpicker",
4
+ "version": "0.5.1",
5
+ "description": "A hyper-pedantic ESLint plugin that flags every stylistic and semantic nit, with AI-friendly fix context.",
6
+ "author": "Alien <contact@alien.club> (https://www.alien.club/)",
7
+ "license": "MIT",
8
+ "private": false,
9
+ "packageManager": "npm@11.4.2",
10
+ "type": "module",
11
+ "keywords": [
12
+ "alien",
13
+ "eslint",
14
+ "eslintplugin",
15
+ "eslint-plugin",
16
+ "nitpicker",
17
+ "linting",
18
+ "code-style",
19
+ "ai"
20
+ ],
21
+ "homepage": "https://github.com/Alien-Intelligence/eslint-plugin-nitpicker",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/Alien-Intelligence/eslint-plugin-nitpicker.git"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/Alien-Intelligence/eslint-plugin-nitpicker/issues"
28
+ },
29
+ "publishConfig": {
30
+ "registry": "https://registry.npmjs.org/",
31
+ "access": "public",
32
+ "tag": "latest"
33
+ },
34
+ "engines": {
35
+ "node": ">=20.0.0"
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "README.md",
40
+ "LICENSE"
41
+ ],
42
+ "main": "./dist/index.js",
43
+ "module": "./dist/index.js",
44
+ "types": "./dist/index.d.ts",
45
+ "exports": {
46
+ ".": {
47
+ "types": "./dist/index.d.ts",
48
+ "import": "./dist/index.js",
49
+ "default": "./dist/index.js"
50
+ }
51
+ },
52
+ "scripts": {
53
+ "build": "tsup",
54
+ "lint": "biome check",
55
+ "lint:fix": "biome check --fix && biome format --write",
56
+ "lint:nitpicker": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
57
+ "typecheck": "tsc --noEmit",
58
+ "pretest": "node -e \"require('node:fs').rmSync('node_modules/.vite', { recursive: true, force: true })\"",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest"
61
+ },
62
+ "peerDependencies": {
63
+ "eslint": ">=9.0.0"
64
+ },
65
+ "dependencies": {
66
+ "@typescript-eslint/utils": "^8.18.0"
67
+ },
68
+ "devDependencies": {
69
+ "@biomejs/biome": "^2.5.2",
70
+ "@types/node": "^24.12.2",
71
+ "@typescript-eslint/parser": "^8.64.0",
72
+ "eslint": "^9.17.0",
73
+ "tsup": "^8.5.1",
74
+ "typescript": "^5.8.3",
75
+ "vitest": "^4.1.5"
50
76
  }
51
- },
52
- "scripts": {
53
- "build": "tsup",
54
- "lint": "biome check",
55
- "lint:fix": "biome check --fix && biome format --write",
56
- "lint:nitpicker": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
57
- "typecheck": "tsc --noEmit",
58
- "pretest": "node -e \"require('node:fs').rmSync('node_modules/.vite', { recursive: true, force: true })\"",
59
- "test": "vitest run",
60
- "test:watch": "vitest"
61
- },
62
- "peerDependencies": {
63
- "eslint": ">=9.0.0"
64
- },
65
- "dependencies": {
66
- "@typescript-eslint/utils": "^8.18.0"
67
- },
68
- "devDependencies": {
69
- "@biomejs/biome": "^2.5.2",
70
- "@types/node": "^24.12.2",
71
- "@typescript-eslint/parser": "^8.64.0",
72
- "eslint": "^9.17.0",
73
- "tsup": "^8.5.1",
74
- "typescript": "^5.8.3",
75
- "vitest": "^4.1.5"
76
- }
77
- }
77
+ }