-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.99 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
{
"name": "stack-search",
"displayName": "Stack Search",
"description": "Stack Search is an open-source extension for VSCode to search on stack overflow. This extension is for developers who actively surf questions on stack overflow to view, comment, answer, cast votes on their particular field / tech stack of choice.",
"icon": "images/stack_search_logo.png",
"version": "0.0.6",
"publisher": "vByte",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:stack-search.getQuestionsFromSO",
"onCommand:stack-search.getFavQuestionsFromSO",
"onCommand:stack-search.getSearchResultsFromSO"
],
"repository": {
"type": "git",
"url": "https://github.com/iamsahilsonawane/stack_search.git"
},
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "Stack Search",
"properties": {
"stackSearch.config.favoriteTags": {
"type": "string",
"default": "StackOverflow",
"description": "Add comma-separated favorite tags",
"examples": [
"flutter,dart",
"python,pycharm"
]
}
}
},
"commands": [
{
"command": "stack-search.getQuestionsFromSO",
"title": "StackSearch: Search with Tags"
},
{
"command": "stack-search.getFavQuestionsFromSO",
"title": "StackSearch: Favorite Tags"
},
{
"command": "stack-search.getSearchResultsFromSO",
"title": "StackSearch: Search with Query"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.61.0",
"@vscode/test-electron": "^1.6.2",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.2.0",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.25.0"
}
}