@moso/eslint-config 0.3.5 → 1.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.
package/package.json CHANGED
@@ -1,37 +1,114 @@
1
1
  {
2
- "name": "@moso/eslint-config",
3
- "version": "0.3.5",
4
- "description": "Morten's ESLint config",
5
- "keywords": [],
6
- "main": "index.js",
7
- "files": [
8
- "index.js"
9
- ],
10
- "peerDependencies": {
11
- "eslint": ">=8.40.0"
12
- },
13
- "dependencies": {
14
- "@typescript-eslint/eslint-plugin": "^5.59.7",
15
- "@typescript-eslint/parser": "^5.59.7",
16
- "eslint-plugin-eslint-comments": "^3.2.0",
17
- "eslint-plugin-html": "^7.1.0",
18
- "eslint-plugin-import": "^2.27.5",
19
- "eslint-plugin-jsonc": "^2.8.0",
20
- "eslint-plugin-n": "^16.0.0",
21
- "eslint-plugin-promise": "^6.1.1",
22
- "eslint-plugin-unicorn": "^47.0.0",
23
- "eslint-plugin-vue": "^9.14.0",
24
- "jsonc-eslint-parser": "^2.3.0",
25
- "@moso/eslint-config-ts": "0.3.5",
26
- "@moso/eslint-config-vue": "0.3.5"
27
- },
28
- "devDependencies": {
29
- "eslint": ">=8.40.0"
30
- },
31
- "author": {
32
- "name": "Morten Sørensen",
33
- "email": "morten@moso.io",
34
- "url": "https://moso.io"
35
- },
36
- "license": "MIT"
37
- }
2
+ "name": "@moso/eslint-config",
3
+ "type": "module",
4
+ "version": "1.0.1",
5
+ "packageManager": "bun@1.2.5",
6
+ "description": "moso's shared ESLint config",
7
+ "author": {
8
+ "name": "Morten Sørensen",
9
+ "email": "morten@moso.dev",
10
+ "url": "https://moso.dev"
11
+ },
12
+ "license": "MIT",
13
+ "homepage": "https://github.com/moso/eslint-config",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/moso/eslint-config/eslint-config.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/moso/eslint-config/issues"
20
+ },
21
+ "keywords": [
22
+ "eslint-config",
23
+ "eslint",
24
+ "config",
25
+ "eslint-config moso",
26
+ "moso",
27
+ "typescript",
28
+ "react",
29
+ "vue"
30
+ ],
31
+ "exports": {
32
+ ".": "./dist/index.js"
33
+ },
34
+ "main": "./dist/index.js",
35
+ "types": "./dist/index.d.ts",
36
+ "files": ["dist"],
37
+ "scripts": {
38
+ "build": "bun run typegen && tsup --clean --dts",
39
+ "build:inspector": "bun run build && bunx @eslint/config-inspector build",
40
+ "dev": "bunx @eslint/config-inspector --config eslint.config.ts",
41
+ "lint": "eslint",
42
+ "prepack": "bun run build",
43
+ "prepare": "bun run simple-git-hooks",
44
+ "release": "bumpp && bun publish",
45
+ "test": "vitest",
46
+ "typecheck": "tsc --noEmit",
47
+ "typegen": "tsx src/typegen/typegen.ts",
48
+ "watch": "tsup --watch"
49
+ },
50
+ "peerDependencies": {
51
+ "eslint": "^9.10.0"
52
+ },
53
+ "dependencies": {
54
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
55
+ "@eslint-react/eslint-plugin": "^1.34.1",
56
+ "@stylistic/eslint-plugin": "^4.2.0",
57
+ "@typescript-eslint/eslint-plugin": "^8.26.1",
58
+ "@typescript-eslint/parser": "^8.26.1",
59
+ "@vitest/eslint-plugin": "^1.1.37",
60
+ "eslint-config-flat-gitignore": "^2.1.0",
61
+ "eslint-flat-config-utils": "^2.0.1",
62
+ "eslint-merge-processors": "^2.0.0",
63
+ "eslint-plugin-antfu": "^3.1.1",
64
+ "eslint-plugin-import-x": "^4.8.0",
65
+ "eslint-plugin-jsdoc": "^50.6.6",
66
+ "eslint-plugin-jsonc": "^2.19.1",
67
+ "eslint-plugin-n": "^17.16.2",
68
+ "eslint-plugin-no-only-tests": "^3.3.0",
69
+ "eslint-plugin-perfectionist": "^4.10.1",
70
+ "eslint-plugin-react-hooks": "^5.2.0",
71
+ "eslint-plugin-react-refresh": "^0.4.19",
72
+ "eslint-plugin-unicorn": "^57.0.0",
73
+ "eslint-plugin-unused-imports": "^4.1.4",
74
+ "eslint-plugin-vue": "^10.0.0",
75
+ "eslint-plugin-yml": "^1.17.0",
76
+ "eslint-processor-vue-blocks": "^2.0.0",
77
+ "globals": "^16.0.0",
78
+ "jsonc-eslint-parser": "^2.4.0",
79
+ "local-pkg": "^1.1.1",
80
+ "vue-eslint-parser": "^10.1.1",
81
+ "yaml-eslint-parser": "^1.3.0"
82
+ },
83
+ "devDependencies": {
84
+ "@eslint-types/jsdoc": "^48.2.2",
85
+ "@eslint-types/typescript-eslint": "^7.5.0",
86
+ "@eslint-types/unicorn": "^52.0.0",
87
+ "@eslint/config-inspector": "^1.0.2",
88
+ "@types/eslint": "^9.6.1",
89
+ "@types/node": "^22.13.10",
90
+ "bumpp": "^10.1.0",
91
+ "eslint": "^9.22.0",
92
+ "eslint-typegen": "^2.1.0",
93
+ "jiti": "^2.4.2",
94
+ "lint-staged": "^15.5.0",
95
+ "simple-git-hooks": "^2.11.1",
96
+ "tsup": "^8.4.0",
97
+ "tsx": "^4.19.3",
98
+ "typescript": "^5.8.2",
99
+ "vitest": "^3.0.8",
100
+ "vue": "^3.5.13"
101
+ },
102
+ "resolutions": {
103
+ "@eslint-community/eslint-utils": "^4.4.1",
104
+ "@typescript-eslint/utils": "^8.26.1",
105
+ "eslint": "^9.22.0",
106
+ "tsx": "^4.19.3"
107
+ },
108
+ "simple-git-hooks": {
109
+ "pre-commit": "bunx lint-staged"
110
+ },
111
+ "lint-staged": {
112
+ "*": "eslint --fix"
113
+ }
114
+ }
package/index.js DELETED
@@ -1,6 +0,0 @@
1
- module.exports = {
2
- extends: [
3
- '@moso/eslint-config-ts',
4
- '@moso/eslint-config-vue',
5
- ],
6
- }