-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "@vue/eslint-config-standard-with-typescript",
"version": "8.0.0",
"description": "eslint-config-standard-with-typescript for Vue.js projects",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./type-checked": "./type-checked.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/eslint-config-standard.git",
"directory": "packages/eslint-config-standard-with-typescript"
},
"keywords": [
"vue",
"eslint",
"standard",
"typescript"
],
"author": "Haoqun Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/eslint-config-standard/issues"
},
"homepage": "https://github.com/vuejs/eslint-config-standard/blob/main/packages/eslint-config-standard-with-typescript#readme",
"dependencies": {
"@vue/eslint-config-standard": "workspace:^",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"eslint-import-resolver-next": "^0.4.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1"
},
"peerDependencies": {
"@vue/eslint-config-typescript": "^14.2.0",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^9.28.0",
"typescript": "*"
},
"peerDependenciesMeta": {
"@vue/eslint-config-typescript": {
"optional": true
}
},
"devDependencies": {
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.28.0",
"typescript": "~5.7.3"
}
}