-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.3 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@rightcapital/eslint-config",
"version": "69.0.0",
"description": "ESLint Config for RightCapital",
"keywords": [
"eslint",
"eslint-config",
"rightcapital"
],
"homepage": "https://github.com/RightCapitalHQ/frontend-style-guide/tree/main/packages/eslint-config#readme",
"bugs": {
"url": "https://github.com/RightCapitalHQ/frontend-style-guide/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/RightCapitalHQ/frontend-style-guide.git",
"directory": "packages/eslint-config"
},
"license": "MIT",
"author": "RightCapital <npm-publisher@rightcapital.com>",
"type": "module",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "pnpm run clean",
"build": "tsc --build",
"clean": "tsc --build --clean",
"generate:types": "tsx scripts/generate-eslint-react-types.mts",
"prepack": "nx build"
},
"dependencies": {
"@eslint-react/eslint-plugin": "5.8.17",
"@rightcapital/eslint-plugin": "workspace:*",
"@stylistic/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "8.61.0",
"@typescript-eslint/utils": "8.61.0",
"confusing-browser-globals": "1.0.11",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-lodash": "8.0.0",
"eslint-plugin-n": "18.1.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-simple-import-sort": "13.0.0",
"eslint-plugin-unicorn": "71.1.0",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "16.5.0",
"typescript-eslint": "8.61.0"
},
"devDependencies": {
"@eslint/core": "catalog:",
"@rightcapital/tsconfig": "workspace:*",
"@types/confusing-browser-globals": "1.0.3",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"@types/node": "24.13.1",
"@types/semver": "7.7.1",
"eslint": "catalog:",
"prettier": "catalog:"
},
"peerDependencies": {
"eslint": "9.x || 10.x",
"typescript": "5.x || 6.x"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "pnpm@11.5.2",
"engines": {
"node": "^22.13.0 || >=24"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}