-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
{
"name": "@trigen/eslint-config",
"type": "module",
"version": "8.0.0",
"description": "Trigen's ESLint config.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/scripts.git",
"directory": "packages/eslint-config"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/scripts/issues"
},
"keywords": [
"eslint",
"eslint-config"
],
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"./env": {
"types": "./src/env.d.ts",
"default": "./src/env.js"
},
"./*": {
"types": "./src/index.d.ts",
"default": "./src/*.js"
}
},
"publishConfig": {
"access": "public",
"directory": "package",
"linkDirectory": false
},
"scripts": {
"prepublishOnly": "del ./package && clean-publish",
"postpublish": "del ./package"
},
"peerDependencies": {
"@testing-library/dom": ">=8.0.0",
"eslint": ">=9.0.0"
},
"peerDependenciesMeta": {
"@testing-library/dom": {
"optional": true
}
},
"dependencies": {
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsdoc": "^51.3.3",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-testing-library": "^7.5.3",
"globals": "^16.3.0",
"typescript-eslint": "^8.35.1"
}
}