-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.03 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
{
"name": "altervista-thesaurus",
"displayName": "Altervista Thesaurus",
"description": "A thesaurus using the API provided by altervista.org.",
"version": "0.2.1",
"publisher": "brunnerh",
"license": "MIT",
"icon": "icon/icon.png",
"homepage": "https://github.com/brunnerh/altervista-thesaurus",
"repository": {
"type": "git",
"url": "https://github.com/brunnerh/altervista-thesaurus.git"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Other"
],
"keywords": [
"thesaurus",
"synonym finder",
"wordbook"
],
"activationEvents": [],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "altervista-thesaurus.synonyms",
"title": "Altervista Thesaurus: Synonyms"
},
{
"command": "altervista-thesaurus.synonyms-lang",
"title": "Altervista Thesaurus: Synonyms in Specified Language"
}
],
"menus": {
"editor/context": [
{
"command": "altervista-thesaurus.synonyms",
"group": "altervista-thesaurus"
},
{
"command": "altervista-thesaurus.synonyms-lang",
"group": "altervista-thesaurus"
}
]
},
"configuration": {
"type": "object",
"title": "Altervista Thesaurus",
"properties": {
"altervista-thesaurus.key": {
"description": "The API key to use for the altervista.org thesaurus service.",
"type": [
"string",
"null"
],
"default": null
},
"altervista-thesaurus.lang": {
"description": "The language to use for lookup.",
"type": "string",
"default": "en_US",
"enum": [
"cs_CZ",
"da_DK",
"de_CH",
"de_DE",
"el_GR",
"en_US",
"es_ES",
"fr_FR",
"hu_HU",
"it_IT",
"no_NO",
"pl_PL",
"pt_PT",
"ro_RO",
"ru_RU",
"sk_SK"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.37",
"@types/node-fetch": "^2.5.7",
"@types/vscode": "^1.44.0",
"typescript": "^3.8.3"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}