-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.39 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
{
"name": "thesaurus-vscode",
"displayName": "Thesaurus",
"description": "Consult a thesaurus from within Visual Studio Code.",
"version": "1.0.1-SNAPSHOT",
"publisher": "thepieterdc",
"repository": {
"type": "git",
"url": "https://github.com/thepieterdc/thesaurus-vscode"
},
"engines": {
"vscode": "^1.34.0"
},
"license": "MIT",
"categories": [
"Other"
],
"icon": "assets/icon.png",
"activationEvents": [
"onCommand:thesaurus.find"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "thesaurus.find",
"title": "Thesaurus: Find synonyms",
"when": "false"
}
],
"menus": {
"editor/context": [
{
"command": "thesaurus.find",
"title": "Thesaurus: Find synonyms"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"package": "vsce package",
"vscode:publish": "vsce publish --yarn",
"vscode:prepublish": "yarn run compile",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"got": "^11.8.1"
},
"devDependencies": {
"@types/node": "^14.14.14",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"vsce": "^1.83.0"
}
}