-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "eslint-plugin-react-import",
"version": "1.1.1",
"type": "module",
"description": "ESLint plugin to ensure consistent react imports",
"engines": {
"node": "^18 || ^20 || ^22"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"homepage": "https://github.com/marcalexiei/eslint-plugin-react-import",
"bugs": {
"url": "https://github.com/marcalexiei/eslint-plugin-react-import/issues"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"react-import"
],
"files": [
"dist"
],
"author": "Marco Pasqualetti @marcalexiei",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/marcalexiei/eslint-plugin-react-import.git"
},
"scripts": {
"build": "rollup --config",
"lint": "pnpm run lint:js && pnpm run lint:docs",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:docs": "eslint-doc-generator --check",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"test": "vitest",
"update:eslint-docs": "pnpm run build && eslint-doc-generator",
"release": "pnpm run build && changeset publish",
"check-all": "pnpm run \"/^(lint|format|typecheck|build)$/\" && pnpm run test --run"
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"prettier": "@marcalexiei/prettier-config",
"peerDependencies": {
"eslint": "^8.57 || ^9"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@eslint/js": "9.14.0",
"@marcalexiei/prettier-config": "1.0.4",
"@rollup/plugin-typescript": "12.1.1",
"@types/estree": "1.0.6",
"@types/json-schema": "7.0.15",
"@types/node": "20.17.6",
"@typescript-eslint/parser": "8.13.0",
"eslint": "9.14.0",
"eslint-doc-generator": "1.7.1",
"eslint-plugin-eslint-plugin": "6.3.1",
"eslint-plugin-n": "17.12.0",
"prettier": "3.3.3",
"rollup": "4.24.4",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vitest": "2.1.4"
}
}