-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 KB
/
package.json
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
{
"name": "@sanity/eslint-config-studio",
"version": "5.0.1",
"description": "The ESLint configuration that ships with new Sanity Studio projects. Designed to be relatively unobtrusive to help find bugs instead enforce opinions.",
"keywords": [
"sanity",
"eslint"
],
"homepage": "https://www.sanity.io/",
"bugs": {
"url": "https://github.com/sanity-io/eslint-config-studio/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/eslint-config-studio.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"type": "module",
"main": "index.js",
"files": [
"confusingBrowserGlobals.js",
"eslint.config.js",
"index.js"
],
"scripts": {
"lint": "eslint . --max-warnings=0",
"prepare": "node -e \"require('fs').writeFileSync('./confusingBrowserGlobals.js', 'export default ' + JSON.stringify(require('confusing-browser-globals'), null, 2))\" && prettier -w ./confusingBrowserGlobals.js",
"test": "vitest",
"posttest": "npm run lint"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"typescript-eslint": "^8.17.0"
},
"devDependencies": {
"@sanity/semantic-release-preset": "^5.0.0",
"@types/react": "^19.0.1",
"confusing-browser-globals": "^1.0.11",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"react": "^19.0.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"eslint": "^9.0.0"
},
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}