-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.66 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@hypernym/eslint-config",
"version": "3.5.6",
"author": "Hypernym Studio",
"description": "Hypernym's internal config for ESLint.",
"license": "MIT",
"repository": "hypernym-studio/eslint-config",
"homepage": "https://github.com/hypernym-studio/eslint-config",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.mts",
"import": "./dist/index.mjs"
},
"./svelte": {
"types": "./dist/types/svelte/index.d.mts",
"import": "./dist/svelte/index.mjs"
},
"./vue": {
"types": "./dist/types/vue/index.d.mts",
"import": "./dist/vue/index.mjs"
},
"./react": {
"types": "./dist/types/react/index.d.mts",
"import": "./dist/react/index.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"eslint",
"eslint-config",
"presets",
"config",
"esm"
],
"scripts": {
"build": "hyperbundler",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"prepublishOnly": "pnpm build"
},
"sideEffects": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"peerDependencies": {
"eslint": ">=9.0.0",
"eslint-plugin-react": ">=7.33.0",
"eslint-plugin-react-hooks": ">=4.4.0",
"eslint-plugin-react-refresh": ">=0.4.0",
"eslint-plugin-svelte": ">=2.39.0",
"eslint-plugin-vue": ">=9.23.0",
"svelte-eslint-parser": ">=0.39.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"eslint-plugin-svelte": {
"optional": true
},
"svelte-eslint-parser": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"eslint-plugin-react-refresh": {
"optional": true
}
},
"dependencies": {
"@eslint/js": "^9.19.0",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"globals": "^15.14.0"
},
"devDependencies": {
"@hypernym/bundler": "^0.14.0",
"@hypernym/prettier-config": "^3.2.2",
"@hypernym/tsconfig": "^2.5.0",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-svelte": "^2.46.1",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.2",
"svelte-eslint-parser": "^0.43.0",
"typescript": "^5.7.3"
}
}