-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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": "@cycraft/eslint",
"version": "0.4.1",
"type": "module",
"description": "Modern TS ESM base eslint that comes with everything eslint needs",
"license": "MIT",
"repository": "cycraft/eslint",
"scripts": {
"release": "np",
"test": "echo none"
},
"author": {
"name": "Luca Ban - Mesqueeb",
"email": "[email protected]",
"url": "https://cycraft.co"
},
"exports": {
"./prettier": "./.prettierrc.js",
"./config": "./eslint.config.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@eslint/js": "^9.3.0",
"@types/node": "^20.12.13",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^53.0.0",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.21"
},
"devDependencies": {
"np": "^10.0.5"
},
"files": [
".prettierrc.js",
"eslint.config.js"
],
"keywords": [
"esm",
"eslint",
"eslint-config",
"eslint-plugin",
"typescript",
"typescript-eslint",
"prettier",
"ts",
"config",
"configuration"
]
}