-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 2.84 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
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
{
"name": "vetur-extended",
"displayName": "Vetur Extended",
"publisher": "zardoy",
"version": "0.0.0-dev",
"license": "MIT",
"web": true,
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"vue",
"vetur",
"volar",
"vue2"
],
"contributes": {
"commands": [
{
"command": "findComponentReferences",
"title": "Find Component References",
"icon": "$(references)"
},
{
"command": "generateJsconfigAliases",
"title": "Generate Jsconfig Aliases"
},
{
"command": "printWebpackJsconfigAliases",
"title": "Print Webpack Jsconfig Aliases"
},
{
"command": "copyStylesWithClasesFromTemplate",
"title": "Copy Styles with Clases From Template"
},
{
"command": "focusVuexMapper",
"title": "Focus Vuex Mapper"
},
{
"command": "expandTag",
"title": "Expand Tag"
},
{
"command": "copyComponentName",
"title": "Copy Component Name"
},
{
"command": "createCssClass",
"title": "Create CSS Class"
}
],
"menus": {
"editor/title": [
{
"when": "editorLangId == 'vue' && veturExtended.enableFindReferencesButton",
"group": "navigation",
"command": "findComponentReferences"
}
]
}
},
"activationEvents": [
"onLanguage:vue"
],
"scripts": {
"start": "vscode-framework start",
"lint": "eslint src/**"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/vscode": "^1.76.0",
"@zardoy/tsconfig": "^1.5.0",
"eslint": "^8.37.0",
"eslint-config-zardoy": "^0.2.16",
"prettier": "^3.2.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@zardoy/utils": "^0.0.9",
"@zardoy/vscode-utils": "^0.0.29",
"change-case": "^4.1.2",
"escape-string-regexp": "^5.0.0",
"modify-json-file": "^1.2.2",
"postcss": "^8.4.21",
"postcss-selector-parser": "^6.0.11",
"rambda": "^7.5.0",
"type-fest": "^2.19.0",
"vscode-framework": "^0.0.18",
"vscode-html-languageservice": "^4.2.5",
"vscode-uri": "^3.0.7"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 150
}
}