-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "eslint-config-sweet",
"version": "22.1.2",
"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:config": "npx --yes @eslint/config-inspector@latest",
"check:types": "npx --yes @arethetypeswrong/cli@latest --pack .",
"start": "vitest"
},
"dependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-unicorn": "^56.0.1",
"typescript-eslint": "^8.18.1"
},
"devDependencies": {
"eslint": "^9.17.0",
"robins-tsconfig": "^1.0.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"eslint": "^9",
"typescript": "^5"
}
}