-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "eslint-config-xo-typescript",
"version": "7.0.0",
"description": "ESLint shareable config for TypeScript to be used with eslint-config-xo",
"license": "MIT",
"repository": "xojs/eslint-config-xo-typescript",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
".": "./index.js",
"./space": "./space.js"
},
"sideEffects": false,
"engines": {
"node": ">=18.18"
},
"scripts": {
"test": "ava"
},
"files": [
"index.js",
"space.js"
],
"keywords": [
"typescript",
"eslintconfig",
"xo",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"simple"
],
"dependencies": {
"@stylistic/eslint-plugin": "^2.6.1",
"eslint-config-xo": "^0.46.0",
"typescript-eslint": "^8.3.0"
},
"devDependencies": {
"ava": "^6.1.3",
"eslint": "^9.8.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"eslint": ">=9.8.0",
"typescript": ">=5.5.0"
}
}