-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "@eslint-react/shared",
"version": "5.8.13",
"description": "ESLint React's Shared constants and functions.",
"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/shared"
},
"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"
],
"scripts": {
"build": "tsdown",
"build:docs": "typedoc",
"lint:publish": "publint",
"lint:ts": "tsl",
"publish": "pnpm run build && pnpm run lint:publish"
},
"dependencies": {
"@eslint-react/eslint": "workspace:*",
"@typescript-eslint/utils": "^8.60.1",
"ts-pattern": "^5.9.0",
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@local/configs": "workspace:*",
"@local/eff": "workspace:*",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^25.9.2",
"@types/picomatch": "^4.0.3",
"eslint": "^10.4.1",
"tsdown": "^0.22.2",
"typescript": "6.0.3"
},
"peerDependencies": {
"eslint": "^10.3.0",
"typescript": "*"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
},
"inlinedDependencies": {
"@local/eff": "workspace:*"
}
}