eslint-plugin-flawless 0.1.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,90 @@
1
+ {
2
+ "name": "eslint-plugin-flawless",
3
+ "version": "0.1.0",
4
+ "description": "Your ESLint plugin description",
5
+ "keywords": [
6
+ "eslint",
7
+ "eslint-plugin",
8
+ "typescript-eslint"
9
+ ],
10
+ "homepage": "https://github.com/christopher-buss/eslint-plugin-flawless#readme",
11
+ "bugs": "https://github.com/christopher-buss/eslint-plugin-flawless/issues",
12
+ "repository": {
13
+ "url": "git+https://github.com/christopher-buss/eslint-plugin-flawless.git",
14
+ "type": "git"
15
+ },
16
+ "license": "MIT",
17
+ "author": "Christopher Buss <christopher.buss@pm.me> (https://github.com/christopher-buss)",
18
+ "sideEffects": false,
19
+ "type": "module",
20
+ "exports": {
21
+ ".": "./dist/index.mjs",
22
+ "./package.json": "./package.json"
23
+ },
24
+ "main": "./dist/index.mjs",
25
+ "module": "./dist/index.mjs",
26
+ "types": "./dist/index.d.mts",
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "simple-git-hooks": {
31
+ "pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
32
+ },
33
+ "lint-staged": {
34
+ "*": "eslint --fix --cache"
35
+ },
36
+ "dependencies": {
37
+ "@typescript-eslint/scope-manager": "8.44.0",
38
+ "@typescript-eslint/type-utils": "^8.44.0",
39
+ "@typescript-eslint/utils": "8.44.0"
40
+ },
41
+ "devDependencies": {
42
+ "@antfu/ni": "25.0.0",
43
+ "@isentinel/eslint-config": "3.0.0",
44
+ "@isentinel/tsconfig": "1.0.0",
45
+ "@types/node": "24.0.13",
46
+ "@typescript-eslint/eslint-plugin": "8.44.0",
47
+ "@typescript-eslint/parser": "8.44.0",
48
+ "@vitest/eslint-plugin": "1.3.4",
49
+ "bumpp": "10.2.2",
50
+ "eslint": "9.35.0",
51
+ "eslint-doc-generator": "2.2.2",
52
+ "eslint-plugin-eslint-plugin": "7.0.0",
53
+ "eslint-plugin-n": "17.23.1",
54
+ "eslint-plugin-pnpm": "1.1.0",
55
+ "eslint-vitest-rule-tester": "2.2.1",
56
+ "jiti": "2.5.1",
57
+ "lint-staged": "16.1.4",
58
+ "publint": "0.3.12",
59
+ "simple-git-hooks": "2.13.1",
60
+ "ts-api-utils": "2.1.0",
61
+ "tsdown": "0.13.3",
62
+ "tsx": "4.20.3",
63
+ "typescript": "5.8.3",
64
+ "unplugin-unused": "0.5.1",
65
+ "vitest": "3.2.4"
66
+ },
67
+ "peerDependencies": {
68
+ "eslint": ">=9.15.0"
69
+ },
70
+ "engines": {
71
+ "node": ">=20.0.0"
72
+ },
73
+ "publishConfig": {
74
+ "access": "public",
75
+ "provenance": true
76
+ },
77
+ "scripts": {
78
+ "build": "tsdown --clean --dts",
79
+ "create-rule": "tsx scripts/create-rule.ts",
80
+ "dev": "tsdown --stub",
81
+ "eslint-docs": "eslint-doc-generator",
82
+ "posteslint-docs": "nr lint --cache --fix \"**/*.md\"",
83
+ "lint": "eslint --cache",
84
+ "lint:ci": "eslint --cache --cache-strategy content",
85
+ "release": "bumpp",
86
+ "start": "tsx src/index.ts",
87
+ "test": "vitest",
88
+ "typecheck": "tsc --noEmit"
89
+ }
90
+ }