-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.99 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.99 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
{
"name": "swd-eslint-config",
"version": "2.3.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": ">=24.5.0"
},
"scripts": {
"build": "tsup src",
"ncu": "ncu -i",
"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": {
"@changesets/cli": "^2.29.7",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"@types/node": "24.5.2",
"eslint": "9.39.1",
"npm-check-updates": "19.1.2",
"prettier": "3.6.2",
"tsup": "^8.5.0",
"typescript": "5.9.3"
},
"dependencies": {
"@eslint/compat": "1.4.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.39.1",
"@tanstack/eslint-plugin-query": "5.91.2",
"eslint-config-expo": "^10.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-better-tailwindcss": "3.7.10",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"typescript-eslint": "^8.46.3"
},
"peerDependencies": {
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"pnpm": {
"overrides": {
"eslint-plugin-react-hooks": "^7.0.1"
}
},
"packageManager": "pnpm@10.17.0"
}