-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "eslint-config-chariz",
"version": "1.6.0",
"description": "ESLint config used at Chariz",
"author": "Aarnav Tale <[email protected]>",
"contributors": [
"Adam Demasi <[email protected]>"
],
"main": "./dist/.eslintrc.js",
"module": "./dist/.eslintrc.mjs",
"exports": {
".": {
"import": "./dist/.eslintrc.mjs",
"require": "./dist/.eslintrc.js"
}
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx .eslintrc.js",
"lint:fix": "pnpm -s lint -- --fix",
"push": "np --no-cleanup --no-tests --message \"chore: v%s\"",
"prepublishOnly": "tsup ./.eslintrc.js --format cjs,esm --clean",
"test": "pnpm -s lint"
},
"keywords": [
"eslint",
"eslintconfig",
"esm",
"react",
"preact",
"typescript",
"es2022",
"es2021",
"es2020",
"es2019",
"es2018",
"es2017",
"es2016",
"es2015",
"es6",
"es7",
"es8"
],
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chariz/eslint.git"
},
"bugs": {
"url": "https://github.com/chariz/eslint/issues"
},
"homepage": "https://github.com/chariz/eslint#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^47.0.0"
},
"peerDependencies": {
"eslint": ">= 8",
"typescript": "*"
},
"devDependencies": {
"@types/eslint": "^8.40.0",
"np": "^8.0.2",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
}
}