-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "@electron-toolkit/eslint-config-ts",
"version": "3.0.0-beta.1",
"description": "Basic ESLint config for Electron-TypeScript projects.",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"files": [
"eslint-base.js",
"eslint-recommended.js",
"index.js",
"index.d.ts"
],
"author": "Alex Wei<https://github.com/alex8088>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alex8088/electron-toolkit.git",
"directory": "packages/eslint-config-ts"
},
"bugs": {
"url": "https://github.com/alex8088/electron-toolkit/issues"
},
"homepage": "https://github.com/alex8088/electron-toolkit/tree/master/packages/eslint-config-ts#readme",
"keywords": [
"electron",
"eslint",
"typescript"
],
"dependencies": {
"@eslint/js": "^9.18.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.21.0"
},
"devDependencies": {
"eslint": "^9.18.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"eslint": ">=8.56.0",
"typescript": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}