@favorodera/eslint-config 0.0.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.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@favorodera/eslint-config",
3
+ "type": "module",
4
+ "version": "0.0.0",
5
+ "description": "A starter for creating a TypeScript package.",
6
+ "author": "Favour Emeka <favorodera@gmail.com>",
7
+ "funding": "https://github.com/sponsors/favorodera",
8
+ "license": "MIT",
9
+ "private": false,
10
+ "homepage": "https://github.com/favorodera/eslint-config#readme",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/favorodera/eslint-config.git"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/favorodera/eslint-config/issues"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "import": "./dist/index.mjs",
24
+ "require": "./dist/index.cjs"
25
+ },
26
+ "./package.json": "./package.json"
27
+ },
28
+ "main": "./dist/index.cjs",
29
+ "module": "./dist/index.mjs",
30
+ "types": "./dist/index.d.cts",
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "devDependencies": {
35
+ "@types/node": "^25.6.2",
36
+ "@typescript/native-preview": "7.0.0-dev.20260509.2",
37
+ "eslint": "^10.4.1",
38
+ "relizy": "^1.4.6",
39
+ "tsdown": "^0.22.0",
40
+ "tsx": "^4.22.4",
41
+ "typescript": "^6.0.3",
42
+ "vitest": "^4.1.5"
43
+ },
44
+ "peerDependencies": {
45
+ "eslint": "^10.0.0"
46
+ },
47
+ "engines": {
48
+ "node": ">=22.0.0",
49
+ "pnpm": ">=11.0.0"
50
+ },
51
+ "keywords": [
52
+ "nuxt",
53
+ "vue",
54
+ "eslint",
55
+ "typescript",
56
+ "stylistic",
57
+ "tooling",
58
+ "linter"
59
+ ],
60
+ "dependencies": {
61
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
62
+ "@eslint/js": "^10.0.1",
63
+ "@eslint/markdown": "^8.0.2",
64
+ "@stylistic/eslint-plugin": "^5.10.0",
65
+ "defu": "^6.1.7",
66
+ "eslint-flat-config-utils": "^3.2.0",
67
+ "eslint-merge-processors": "^2.0.0",
68
+ "eslint-plugin-better-tailwindcss": "^4.5.0",
69
+ "eslint-plugin-import-lite": "^0.6.0",
70
+ "eslint-plugin-unused-imports": "^4.4.1",
71
+ "eslint-plugin-vue": "^10.9.2",
72
+ "eslint-processor-vue-blocks": "^2.0.0",
73
+ "eslint-typegen": "^2.3.1",
74
+ "globals": "^17.6.0",
75
+ "typescript-eslint": "^8.60.1",
76
+ "vue-eslint-parser": "^10.4.1"
77
+ },
78
+ "scripts": {
79
+ "script:generate-rules-types": "tsx scripts/generate-rules-types.ts",
80
+ "prebuild": "pnpm script:generate-rules-types",
81
+ "build": "tsdown",
82
+ "dev": "pnpm prebuild && tsdown --watch",
83
+ "test": "vitest run",
84
+ "typecheck": "tsc --noEmit",
85
+ "lint": "eslint . --fix",
86
+ "ready": "pnpm install && pnpm build && pnpm lint && pnpm typecheck && pnpm test"
87
+ }
88
+ }