-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "swd-eslint-config",
"version": "1.4.1",
"description": "Custom ESLint config",
"repository": {
"type": "git",
"url": "https://github.com/sebastianwd/eslint-config.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"scripts": {
"build": "tsup src",
"release": "changeset",
"release:publish": "pnpm build && changeset publish --provenance --access public"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"config",
"react",
"typescript",
"javascript"
],
"author": "Sebastian L",
"license": "MIT",
"devDependencies": {
"@types/eslint-plugin-jsx-a11y": "^6.9.0",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"@types/eslint__eslintrc": "^2.1.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@next/eslint-plugin-next": "^15.0.2",
"eslint-config-expo": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"typescript-eslint": "^8.18.2"
},
"peerDependencies": {
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"eslint-plugin-react-hooks": "^5.0.0"
}
}
}