-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "eslint-config-sweet",
"version": "31.0.0",
"description": "ESLint shareable config for the most sweet-ass JavaScript and TypeScript. 🤙🏼",
"keywords": [
"eslint",
"eslint-config"
],
"homepage": "https://github.com/robinloeffel/eslint-config-sweet",
"bugs": "https://github.com/robinloeffel/eslint-config-sweet/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/robinloeffel/eslint-config-sweet.git"
},
"license": "MIT",
"author": "Robin Löffel",
"type": "module",
"main": "eslint.config.js",
"types": "eslint.config.d.ts",
"files": [
"eslint.config.js",
"eslint.config.d.ts",
"license.txt",
"readme.md",
"changelog.md"
],
"scripts": {
"check": "eslint-config-inspector",
"start": "vitest"
},
"dependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.1",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"typescript-eslint": "^8.53.1"
},
"devDependencies": {
"@eslint/config-inspector": "^1.4.2",
"eslint": "^9.39.2",
"robins-tsconfig": "^2.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"eslint": "^9.39.2",
"typescript": "^5.9.3"
}
}