-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "@bedrockio/eslint-plugin",
"version": "1.5.5",
"description": "Common ESLint plugin for Bedrock projects.",
"license": "MIT",
"type": "module",
"scripts": {
"build": "scripts/build",
"prepublishOnly": "yarn build"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"main": "./dist/cjs/index.js",
"module": "./src/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./resolvers/vite": {
"import": "./dist/esm/resolvers/vite.js",
"require": "./dist/cjs/resolvers/vite.js"
}
},
"dependencies": {
"@eslint/js": "^10.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-import-resolver-vite": "^2.1.0",
"eslint-import-resolver-webpack": "^0.13.11",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-mdx": "^3.7.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"typescript-eslint": "^8.57.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@bedrockio/prettier-config": "^1.1.1",
"eslint": "^9.39.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"eslint": ">=9",
"typescript": ">=4.8.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"prettier": "@bedrockio/prettier-config",
"volta": {
"node": "24.13.1",
"yarn": "1.22.22"
}
}