-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.02 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "chai-sutta-explorer",
"displayName": "Chai Sutta API Explorer",
"description": "This VS Code extension helps you find the perfect chai-sutta spots in your codebase. Because coding runs on chai and sutta!",
"version": "2.8.12",
"publisher": "IshKapoor",
"repository": "https://github.com/ishkapoor2000/chai-sutta-explorer/",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"icon": "media/logo.jpg",
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "chai-sutta-explorer.showChaiSuttaSpots",
"title": "Show Sutta Spots"
},
{
"command": "chai-sutta-explorer.refreshTreeView",
"title": "One more chuski of Chai Sutta"
},
{
"command": "chai-sutta-explorer.openFileAtLine",
"title": "Open File at Line"
},
{
"command": "chai-sutta-explorer.filterTreeView",
"title": "Filter API Calls"
}
],
"views": {
"chaiSuttaExplorer": [
{
"id": "chaiSuttaExplorerTreeView",
"name": "Chai Sutta Explorer Tree",
"visibility": "visible"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "chaiSuttaExplorer",
"title": "Chai Sutta Explorer",
"icon": "media/logo_tea.png"
}
]
},
"configuration": {
"type": "object",
"title": "Chai Sutta Explorer Configuration",
"properties": {
"chaiSuttaExplorer.ignorePatterns": {
"type": "array",
"default": [
"**/node_modules/**",
"**/config/**",
"**/Context/**",
"**/schemas/**",
"**/utils/**",
"**/dist/**",
"**/build/**",
"**/*.test.js",
"**/*next-env.d.ts",
"**/*.config.js"
],
"description": "Glob patterns to ignore when searching for API calls."
},
"chaiSuttaExplorer.methodInfo": {
"type": "object",
"default": {},
"description": "Manage which API methods you want to use while searching for API calls. Customize crazy names of HTTP methods."
}
}
},
"configurationMenus": {
"command": "workbench.action.openSettings",
"when": "editorTextFocus",
"group": "chaiSuttaExplorer",
"title": "Chai Sutta Explorer Configuration"
},
"menus": {
"editor/context": [
{
"command": "chai-sutta-explorer.showChaiSuttaSpots",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "chai-sutta-explorer.filterTreeView",
"when": "view == chaiSuttaExplorerTreeView"
}
]
},
"keybindings": [
{
"command": "chai-sutta-explorer.showChaiSuttaSpots",
"key": "ctrl+shift+i",
"mac": "cmd+shift+i",
"when": "editorTextFocus"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/vscode": "^1.60.0",
"eslint": "^7.22.0",
"typescript": "^4.2.3",
"vscode-test": "^1.4.0"
},
"dependencies": {
"acorn": "^8.4.1",
"acorn-loose": "^8.4.0",
"acorn-walk": "^8.3.2",
"glob": "^7.1.6",
"vsce": "^1.97.0"
}
}