-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
56
57
{
"name": "@cycraft/eslint",
"version": "0.4.2",
"description": "Modern TS ESM base eslint that comes with everything eslint needs",
"type": "module",
"sideEffects": false,
"exports": {
"./prettier": "./.prettierrc.js",
"./config": "./eslint.config.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"release": "np",
"test": "echo none"
},
"dependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^20.12.13",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.5.0",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"devDependencies": {
"np": "^10.2.0"
},
"files": [
".prettierrc.js",
"eslint.config.js"
],
"keywords": [
"esm",
"eslint",
"eslint-config",
"eslint-plugin",
"typescript",
"typescript-eslint",
"prettier",
"ts",
"config",
"configuration"
],
"author": "CyCraft (https://cycraft.co)",
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cycraft/@cycraft/eslint.git"
},
"homepage": "https://github.com/cycraft/@cycraft/eslint#readme",
"bugs": "https://github.com/cycraft/@cycraft/eslint/issues"
}