-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.9 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
{
"name": "vue-docs",
"displayName": "Vue docs",
"description": "Viewing documentation [Vue.js, Vuex, Vue Router, Vue SSR, Vuetify, Nuxt.js, VuePress] directly from VS Code!",
"version": "1.0.2",
"publisher": "titiaiev",
"author": {
"name": "Maksim Titiaiev"
},
"license": "MIT",
"icon": "images/vscode-vue-docs.png",
"galleryBanner": {
"color": "#4fc08d",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/Titiaiev/vscode-vue-docs"
},
"homepage": "https://github.com/Titiaiev/vscode-vue-docs/blob/master/README.md",
"bugs": {
"url": "https://github.com/Titiaiev/vscode-vue-docs/issues"
},
"keywords": [
"Vue",
"Vuex",
"Vue Router",
"Vue SSR",
"Vuetify",
"Nuxt.js",
"VuePress",
"documentation"
],
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.openVueDocs"
],
"main": "./extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Vue docs configuration",
"properties": {
"vueDocs.lang": {
"type": "string",
"enum": [
"ru",
"en",
"zh"
],
"default": "",
"description": "предпочтительный язык для документации. поумолчанию, будет выбран язык интерфейса vs code.\n preferred language for documentation. By default, the interface language vs code"
},
"vueDocs.links": {
"type": "object",
"default": {
"Vuetify": "https://vuetifyjs.com/getting-started/quick-start"
},
"description": "пользовательские ссылки, появятся в списке документаций. !!!Не добавляйте источники которым не доверяете, так как JS код подключенный к сайту, также выполняется и в редакторе VS Code. \n user references appear in the list of documentation. !!!Do not add sources that do not trust, because the JS code connected to the site is also executed in the VS Code editor."
}
}
},
"commands": [
{
"command": "extension.openVueDocs",
"title": "Open Vue Docs"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"vscode": "^1.1.33"
}
}