-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "@vitnode/config",
"version": "1.2.0-canary.70",
"description": "ESLint, Prettier, TypeScript (TSConfig) config for VitNode",
"author": "VitNode Team",
"license": "MIT",
"homepage": "https://vitnode.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aXenDeveloper/vitnode.git",
"directory": "packages/config"
},
"keywords": [
"vitnode",
"typescript",
"tsconfig",
"eslint",
"prettier"
],
"type": "module",
"exports": {
"./eslint": {
"import": "./eslint.config.mjs",
"default": "./eslint.config.mjs"
},
"./eslint.react": {
"import": "./eslint.react.config.mjs",
"default": "./eslint.react.config.mjs"
},
"./tsconfig": {
"import": "./tsconfig.json",
"default": "./tsconfig.json"
},
"./prettierrc": {
"import": "./prettierrc.mjs",
"default": "./prettierrc.mjs"
}
},
"peerDependencies": {
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"typescript": "5.9.x"
},
"devDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@eslint-react/eslint-plugin": "^2.3.5",
"@eslint/js": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.7.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript-eslint": "^8.46.4"
}
}