-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "@forcir/eslint-config",
"version": "1.1.0",
"private": false,
"description": "Shared configuration for a consistent experience using JavaScript.",
"license": "MIT",
"type": "module",
"main": "./index.cjs",
"files": [
"*.cjs"
],
"scripts": {
"format": "prettier --check \"**/*.{cjs,js,json,md,ts,tsx}\"",
"format:fix": "prettier --write \"**/*.{cjs,js,json,md,ts,tsx}\"",
"lint": "eslint \"**/*.{cjs,js,ts,tsx}\""
},
"prettier": "@forcir/prettier-config",
"eslintConfig": {
"extends": "./index.cjs"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "6.3.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-unicorn": "48.0.1"
},
"devDependencies": {
"@forcir/prettier-config": "1.0.0",
"eslint": "8.46.0",
"eslint-plugin-jsdoc": "46.5.1",
"prettier": "3.0.0"
},
"peerDependencies": {
"eslint": ">=8.46"
},
"peerDependenciesMeta": {
"eslint": {
"optional": false
}
},
"packageManager": "[email protected]"
}