-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "@chubbyts/chubbyts-eslint",
"type": "module",
"version": "2.0.7",
"description": "ESLint Configuration for chubbyts libraries / framework / projects.",
"keywords": [
"chubbyts",
"eslint"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/chubbyts-eslint",
"scripts": {
"build": "node ./build.js",
"cs-fix": "prettier --write eslintrc.ts",
"cs": "prettier --check eslintrc.ts",
"prepare": "npm run build"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"exports": {
"./*": {
"types": "./*.d.ts",
"require": "./*.cjs",
"import": "./*.mjs",
"default": "./*.mjs"
}
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-functional": "^6.6.0",
"eslint-plugin-import": "^2.29.1"
},
"devDependencies": {
"@chubbyts/chubbyts-packaging": "^2.0.7",
"@types/node": "^20.14.8",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
},
"publishConfig": {
"access": "public"
}
}