eslint-config-setup 0.0.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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +23 -0
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // Placeholder - package is being set up
2
+ export default {}
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "eslint-config-setup",
3
+ "version": "0.0.1",
4
+ "description": "Pre-generated, opinionated ESLint configurations for TypeScript projects. Zero runtime overhead. Full type-checking. AI-ready.",
5
+ "keywords": [
6
+ "eslint",
7
+ "eslint-config",
8
+ "eslint-flat-config",
9
+ "typescript"
10
+ ],
11
+ "license": "Apache-2.0",
12
+ "author": {
13
+ "name": "Sebastian Werner",
14
+ "email": "s.werner@sebastian-software.de",
15
+ "url": "http://sebastian-software.de/werner"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/sebastian-software/effective-eslint-cfg.git"
20
+ },
21
+ "type": "module",
22
+ "main": "index.js"
23
+ }