@koffeine/eslint-config 43.5.0 → 43.6.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/index.d.ts +5 -0
  2. package/package.json +49 -42
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import type { Linter } from 'eslint';
2
+
3
+ declare const config: Linter.Config;
4
+
5
+ export = config;
package/package.json CHANGED
@@ -1,44 +1,51 @@
1
1
  {
2
- "name": "@koffeine/eslint-config",
3
- "version": "43.5.0",
4
- "description": "Koffeine's ESLint shareable config",
5
- "keywords": [
6
- "eslint",
7
- "eslintconfig"
8
- ],
9
- "homepage": "https://github.com/koffeine/eslint-config",
10
- "bugs": {
11
- "url": "https://github.com/koffeine/eslint-config/issues"
12
- },
13
- "license": "MIT",
14
- "author": "Kornél Horváth <kornel.horvath@me.com>",
15
- "files": [
16
- "index.js"
17
- ],
18
- "exports": "./index.js",
19
- "type": "module",
20
- "repository": {
21
- "type": "git",
22
- "url": "git+https://github.com/koffeine/eslint-config.git"
23
- },
24
- "scripts": {
25
- "test": "eslint && tsc -p jsconfig.json && node test/index.js src/index.js",
26
- "build": "esbuild --minify --outfile=index.js src/index.js",
27
- "prepublishOnly": "npm test && npm run build",
28
- "postpublish": "rm index.js"
29
- },
30
- "dependencies": {
31
- "@stylistic/eslint-plugin": "5.0.0"
32
- },
33
- "devDependencies": {
34
- "@types/node": "^22",
35
- "@types/punycode": "^2",
36
- "esbuild": "^0",
37
- "eslint": "9.30.0",
38
- "globals": "^16",
39
- "typescript": "^5"
40
- },
41
- "peerDependencies": {
42
- "eslint": "9.30.0"
43
- }
2
+ "name": "@koffeine/eslint-config",
3
+ "version": "43.6.0",
4
+ "description": "Koffeine's ESLint shareable config",
5
+ "keywords": [
6
+ "eslint",
7
+ "eslintconfig"
8
+ ],
9
+ "homepage": "https://github.com/koffeine/eslint-config",
10
+ "bugs": {
11
+ "url": "https://github.com/koffeine/eslint-config/issues"
12
+ },
13
+ "license": "MIT",
14
+ "author": "Kornél Horváth <kornel.horvath@me.com>",
15
+ "files": [
16
+ "index.js",
17
+ "index.d.ts"
18
+ ],
19
+ "exports": {
20
+ ".": {
21
+ "types": "./index.d.ts",
22
+ "default": "./index.js"
23
+ }
24
+ },
25
+ "type": "module",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/koffeine/eslint-config.git"
29
+ },
30
+ "scripts": {
31
+ "test": "eslint && tsc -p jsconfig.json && node test/index.js src/index.js",
32
+ "build": "esbuild --minify --outfile=index.js src/index.js",
33
+ "prepublishOnly": "npm test && npm run build",
34
+ "postpublish": "rm index.js"
35
+ },
36
+ "dependencies": {
37
+ "@stylistic/eslint-plugin": "5.0.0"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^22",
41
+ "@types/punycode": "^2",
42
+ "@typescript-eslint/parser": "^8",
43
+ "esbuild": "^0",
44
+ "eslint": "9.30.0",
45
+ "globals": "^16",
46
+ "typescript": "^5"
47
+ },
48
+ "peerDependencies": {
49
+ "eslint": "9.30.0"
50
+ }
44
51
  }