-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"author": "Team @ts-all",
"bugs": {
"url": "https://github.com/ts-all/eslint-config/issues"
},
"dependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.4.0"
},
"description": "eslint-config for TypeScript projects",
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
},
"exports": {
".": "./esm/index.js",
"./config": "./config/index.ts"
},
"homepage": "https://github.com/ts-all/eslint-config#readme",
"keywords": [
"eslint",
"eslnit-config",
"typescript",
"typescript-eslint"
],
"license": "MIT",
"module": "./esm/index.js",
"name": "@ts-all/eslint-config",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-all/eslint-config.git"
},
"scripts": {
"start": "tsc -p ./tsconfig.eslint.json && eslint"
},
"type": "module",
"types": "./esm/index.d.ts",
"version": "0.3.7"
}