forked from moonrepo/dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.01 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.01 KB
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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "eslint-config-moon",
"version": "2.0.7",
"description": "A modern and strict ESLint configuration.",
"keywords": [
"eslint-config",
"airbnb",
"moon",
"react",
"typescript"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"*.js",
"lib/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git@github.com:moonrepo/dev.git",
"directory": "packages/eslint-config"
},
"author": "Miles Johnson",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.12.0"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"dependencies": {
"@moonrepo/dev": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-perf": "^3.3.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-solid": "^0.13.0",
"eslint-plugin-unicorn": "^48.0.1"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"eslint": "^8.47.0"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"packemon": {
"format": "lib",
"platform": "node"
},
"exports": {
"./package.json": "./package.json",
"./*": {
"types": "./lib/*.d.ts",
"node": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"default": "./lib/*.js"
},
".": {
"types": "./lib/index.d.ts",
"node": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"default": "./lib/index.js"
}
},
"release": "1660800474162"
}