-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.48 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@logux/vue-devtools",
"version": "0.2.0",
"description": "Vue devtools plugin for debugging Logux applications",
"keywords": [
"logux",
"client",
"vue",
"devtools",
"vue-devtools",
"plugin"
],
"scripts": {
"test": "eslint . && check-dts && yaspeller *.md"
},
"author": "Eduard Aksamitov <e@edaks.co>",
"license": "MIT",
"repository": "logux/vue-devtools",
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
},
"peerDependencies": {
"@logux/client": "^0.12.0",
"@logux/core": "^0.7.0",
"vue": ">=3.0.11"
},
"dependencies": {
"@vue/devtools-api": "^6.0.0-beta.13"
},
"devDependencies": {
"@logux/client": "^0.12.0",
"@logux/core": "^0.7.0",
"@logux/eslint-config": "^45.4.4",
"@logux/sharec-config": "^0.10.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"check-dts": "^0.4.4",
"clean-publish": "^2.2.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettierx": "^0.18.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^33.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"simple-git-hooks": "^2.4.1",
"typescript": "^4.3.2",
"vue": "^3.0.10",
"yaspeller": "^7.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.md": "yaspeller",
"*.js": [
"prettier --write",
"eslint"
],
"*.ts": [
"prettier --write",
"eslint"
]
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "@logux/eslint-config/esm"
},
"eslintIgnore": [
"**/errors.ts"
],
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"ignoreText": [
" \\(by [^)]+\\)."
],
"dictionary": [
"versioning",
"devtools",
"GraphQL",
"roadmap",
"logux",
"vue"
]
},
"sharec": {
"config": "@logux/sharec-config",
"version": "0.10.2"
}
}