forked from vuejs/eslint-config-airbnb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "@vue/eslint-config-airbnb-with-typescript",
"version": "7.0.0",
"description": "eslint-config-airbnb for Vue.js projects with TypeScript support",
"main": "index.js",
"exports": {
".": "./index.js",
"./allow-js-in-vue": "./allow-js-in-vue.js",
"./allow-tsx-in-vue": "./allow-tsx-in-vue.js",
"./allow-jsx-in-vue": "./allow-jsx-in-vue.js",
"./createAliasSetting": "./createAliasSetting.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/eslint-config-airbnb.git",
"directory": "packages/eslint-config-airbnb-with-typescript"
},
"keywords": [
"vue",
"eslint",
"airbnb",
"typescript"
],
"author": "Haoqun Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/eslint-config-airbnb/issues"
},
"homepage": "https://github.com/vuejs/eslint-config-airbnb/blob/main/packages/eslint-config-airbnb-with-typescript#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vue/eslint-config-airbnb": "workspace:^",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-define-config": "^1.6.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"vue-eslint-parser": "^9.0.3"
},
"peerDependencies": {
"eslint": "^8.2.0",
"eslint-plugin-vue": "^9.2.0",
"typescript": "*"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-plugin-vue": "^9.3.0",
"typescript": "~4.7.4"
},
"eslintConfig": {
"extends": "@vue/airbnb"
}
}