-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.66 KB
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
{
"name": "eslint-plugin-react-rsc",
"version": "2.9.0",
"description": "ESLint React's ESLint plugin for RSC related rules.",
"keywords": [
"react",
"eslint",
"eslint-react",
"eslint-plugin",
"eslint-plugin-react-rsc"
],
"homepage": "https://github.com/Rel1cx/eslint-react",
"bugs": {
"url": "https://github.com/Rel1cx/eslint-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rel1cx/eslint-react.git",
"directory": "packages/plugins/eslint-plugin-react-rsc"
},
"license": "MIT",
"author": "Rel1cx",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"./package.json"
],
"scripts": {
"build": "tsdown",
"lint:publish": "publint",
"lint:ts": "tsc --noEmit",
"publish": "pnpm run build && pnpm run lint:publish"
},
"dependencies": {
"@eslint-react/ast": "workspace:*",
"@eslint-react/shared": "workspace:*",
"@eslint-react/var": "workspace:*",
"@typescript-eslint/types": "^8.54.0",
"@typescript-eslint/utils": "^8.54.0",
"ts-pattern": "^5.9.0"
},
"devDependencies": {
"@local/configs": "workspace:*",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"tsdown": "^0.20.1"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"typescript": ">=4.8.4 <6.0.0"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public"
}
}