-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "@uwu-codes/eslint-config",
"version": "1.1.28",
"description": "My eslint config for my projects.",
"main": "ts.json",
"files": [
"ts.json",
"esm.json"
],
"exports": {
".": {
"import": "./esm.json",
"default": "./ts.json"
},
"./esm": "./esm.json",
"./ts": "./ts.json"
},
"scripts": {
"lint": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UwUCode/eslint-config.git"
},
"author": "Donovan_DMC",
"license": "MIT",
"bugs": {
"url": "https://github.com/UwUCode/eslint-config/issues"
},
"homepage": "https://github.com/UwUCode/eslint-config#readme",
"engines": {
"node": ">=18"
},
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@uwu-codes/tsconfig": "^1.0.14",
"eslint": "^9.1.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.1.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.5"
}
}