-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.56 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
81
82
83
84
85
86
{
"name": "@workleap/eslint-configs",
"author": "Workleap",
"description": "Workleap recommended ESLint configurations.",
"version": "2.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/workleap/wl-web-configs.git",
"directory": "packages/eslint-configs"
},
"type": "module",
"publishConfig": {
"access": "public",
"provenance": true,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
},
"exports": "./src/index.ts",
"sideEffects": false,
"files": [
"src",
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "rslib build -c rslib.config.ts",
"eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsgo"
},
"peerDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.2",
"storybook": "^10.3.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"peerDependenciesMeta": {
"@typescript-eslint/parser": {
"optional": true
},
"storybook": {
"optional": true
},
"typescript-eslint": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@vitest/eslint-plugin": "^1.6.14",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-package-json": "^0.91.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.3.3",
"eslint-plugin-testing-library": "^7.16.2",
"eslint-plugin-yaml": "^1.1.3",
"globals": "^17.4.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@rsbuild/core": "1.7.5",
"@rslib/core": "0.20.2",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"@types/estree": "1.0.8",
"@types/node": "25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260331.1",
"@workleap/typescript-configs": "workspace:*",
"eslint": "9.39.2",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0"
}
}