@bratislava/eslint-config 0.1.0 → 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.
Files changed (2) hide show
  1. package/README.md +3 -11
  2. package/package.json +24 -21
package/README.md CHANGED
@@ -189,20 +189,12 @@ npm version major # for breaking changes
189
189
 
190
190
  2. **Publish the package**:
191
191
 
192
+ You'll need 2FA setup on your npm account.
193
+
192
194
  ```bash
193
195
  npm publish --access public
194
196
  ```
195
197
 
196
- ### First-time Setup for @bratislava Scope
197
-
198
- If the `@bratislava` scope doesn't exist yet:
199
-
200
- 1. Go to https://www.npmjs.com/org/create
201
- 2. Create organization with name `bratislava`
202
- 3. Add team members who need publish access
203
-
204
- For existing organization, ensure your npm user has publish rights.
205
-
206
198
  ## Development
207
199
 
208
200
  ### Testing Locally
@@ -225,7 +217,7 @@ npm update
225
217
 
226
218
  ## License
227
219
 
228
- MIT
220
+ EUPL-1.2
229
221
 
230
222
  ## Contributing
231
223
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bratislava/eslint-config",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Shareable ESLint configurations for Bratislava projects",
5
5
  "keywords": [
6
6
  "eslint",
@@ -14,7 +14,7 @@
14
14
  "react"
15
15
  ],
16
16
  "author": "Bratislava Inovacie",
17
- "license": "MIT",
17
+ "license": "EUPL-1.2",
18
18
  "scripts": {
19
19
  "lint": "eslint .",
20
20
  "lint:fix": "eslint . --fix"
@@ -43,27 +43,30 @@
43
43
  "typescript": ">= 5"
44
44
  },
45
45
  "dependencies": {
46
- "@darraghor/eslint-plugin-nestjs-typed": "^7.1.0",
47
- "@eslint/js": "^9.0.0",
48
- "@eslint/json": "^0.12.0",
49
- "@eslint/markdown": "^6.0.0",
50
- "@next/eslint-plugin-next": "^15.0.0",
51
- "@tanstack/eslint-plugin-query": "^5.68.0",
52
- "eslint-config-prettier": "^10.0.0",
53
- "eslint-plugin-i18next": "^6.1.0",
54
- "eslint-plugin-import": "^2.31.0",
55
- "eslint-plugin-jest": "^28.0.0",
56
- "eslint-plugin-jsx-a11y": "^6.10.0",
57
- "eslint-plugin-no-unsanitized": "^4.1.0",
58
- "eslint-plugin-react": "^7.37.0",
59
- "eslint-plugin-react-hooks": "^5.1.0",
60
- "eslint-plugin-security": "^3.0.0",
61
- "eslint-plugin-simple-import-sort": "^12.0.0",
62
- "eslint-plugin-sonarjs": "^3.0.0",
63
- "globals": "^16.0.0",
64
- "typescript-eslint": "^8.0.0"
46
+ "@darraghor/eslint-plugin-nestjs-typed": "7.1.3",
47
+ "@eslint/js": "9.34.0",
48
+ "@eslint/json": "0.14.0",
49
+ "@eslint/markdown": "^6.6.0",
50
+ "@next/eslint-plugin-next": "15.5.2",
51
+ "@tanstack/eslint-plugin-query": "5.91.2",
52
+ "eslint-config-prettier": "10.1.8",
53
+ "eslint-plugin-i18next": "6.1.3",
54
+ "eslint-plugin-import": "2.32.0",
55
+ "eslint-plugin-jest": "28.13.5",
56
+ "eslint-plugin-jsx-a11y": "6.10.2",
57
+ "eslint-plugin-no-unsanitized": "4.1.4",
58
+ "eslint-plugin-react": "7.37.5",
59
+ "eslint-plugin-react-hooks": "7.0.1",
60
+ "eslint-plugin-security": "3.0.1",
61
+ "eslint-plugin-simple-import-sort": "12.1.1",
62
+ "eslint-plugin-sonarjs": "3.0.5",
63
+ "globals": "16.5.0",
64
+ "typescript-eslint": "8.42.0"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=18"
68
+ },
69
+ "volta": {
70
+ "node": "24.12.0"
68
71
  }
69
72
  }