eslint-plugin-nextfriday 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,116 @@
1
+ {
2
+ "name": "eslint-plugin-nextfriday",
3
+ "version": "0.1.0",
4
+ "description": "A comprehensive ESLint plugin providing custom rules and configurations for Next Friday development workflows.",
5
+ "keywords": [
6
+ "eslint",
7
+ "eslintplugin",
8
+ "eslint-plugin",
9
+ "nextfriday",
10
+ "next-friday",
11
+ "linting",
12
+ "code-quality",
13
+ "javascript",
14
+ "typescript",
15
+ "development-tools"
16
+ ],
17
+ "homepage": "https://github.com/next-friday/eslint-plugin-nextfriday",
18
+ "bugs": {
19
+ "url": "https://github.com/next-friday/eslint-plugin-nextfriday/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/next-friday/eslint-plugin-nextfriday.git"
24
+ },
25
+ "license": "MIT",
26
+ "author": "Next Friday <nextfriday.developer@gmail.com>",
27
+ "contributors": [
28
+ "@joetakara"
29
+ ],
30
+ "type": "module",
31
+ "exports": {
32
+ ".": {
33
+ "types": "./lib/index.d.ts",
34
+ "import": "./lib/index.js",
35
+ "require": "./lib/index.cjs"
36
+ }
37
+ },
38
+ "main": "lib/index.js",
39
+ "types": "lib/index.d.ts",
40
+ "files": [
41
+ "LICENSE",
42
+ "README.md",
43
+ "CHANGELOG.md",
44
+ "docs",
45
+ "lib"
46
+ ],
47
+ "scripts": {
48
+ "build": "tsup",
49
+ "changeset": "changeset",
50
+ "changeset:publish": "npm publish --provenance --access public",
51
+ "changeset:version": "changeset version",
52
+ "clear": "rm -rf lib node_modules/.cache .eslintcache",
53
+ "eslint": "eslint src --ext .js,.ts,.mjs --fix",
54
+ "eslint:check": "eslint src --ext .js,.ts,.mjs",
55
+ "preinstall": "npx only-allow pnpm",
56
+ "prepare": "husky",
57
+ "prepublishOnly": "pnpm run build",
58
+ "prettier": "prettier --write .",
59
+ "prettier:check": "prettier --check .",
60
+ "sort-package-json": "pnpm exec sort-package-json",
61
+ "sort-package-json:check": "pnpm exec sort-package-json --check",
62
+ "test": "jest",
63
+ "test:coverage": "jest --coverage",
64
+ "test:watch": "jest --watch",
65
+ "typecheck": "tsc --noEmit"
66
+ },
67
+ "dependencies": {
68
+ "@typescript-eslint/utils": "^8.42.0",
69
+ "emoji-regex": "^10.5.0",
70
+ "tsup": "^8.5.0"
71
+ },
72
+ "devDependencies": {
73
+ "@changesets/changelog-github": "^0.5.1",
74
+ "@changesets/cli": "^2.29.6",
75
+ "@commitlint/cli": "^19.8.1",
76
+ "@commitlint/config-conventional": "^19.8.1",
77
+ "@eslint/js": "^9.35.0",
78
+ "@jest/globals": "^30.1.2",
79
+ "@stylistic/eslint-plugin": "^3.1.0",
80
+ "@swc/core": "^1.13.5",
81
+ "@types/eslint": "^9.6.1",
82
+ "@types/jest": "^30.0.0",
83
+ "@types/node": "^22.5.4",
84
+ "@types/ramda": "^0.31.0",
85
+ "@typescript-eslint/parser": "^8.42.0",
86
+ "@typescript-eslint/rule-tester": "^8.42.0",
87
+ "eslint": "^9.35.0",
88
+ "eslint-config-airbnb-extended": "^2.2.0",
89
+ "eslint-config-prettier": "^10.1.8",
90
+ "eslint-import-resolver-typescript": "^4.4.4",
91
+ "eslint-plugin-import-x": "^4.16.1",
92
+ "eslint-plugin-jest": "^29.0.1",
93
+ "eslint-plugin-prettier": "^5.5.4",
94
+ "eslint-plugin-sonarjs": "^3.0.5",
95
+ "husky": "^9.1.7",
96
+ "jest": "^29.7.0",
97
+ "lint-staged": "^16.1.6",
98
+ "prettier": "^3.6.2",
99
+ "sort-package-json": "^3.4.0",
100
+ "ts-jest": "^29.4.1",
101
+ "ts-node": "^10.9.2",
102
+ "typescript": "^5.6.2",
103
+ "typescript-eslint": "^8.42.0"
104
+ },
105
+ "peerDependencies": {
106
+ "eslint": "^9.0.0"
107
+ },
108
+ "packageManager": "pnpm@9.12.0",
109
+ "engines": {
110
+ "node": ">=22.0.0",
111
+ "pnpm": ">=9.0.0"
112
+ },
113
+ "publishConfig": {
114
+ "access": "public"
115
+ }
116
+ }