-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 4.61 KB
/
package.json
File metadata and controls
181 lines (181 loc) · 4.61 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "codeque",
"publisher": "CodeQue",
"displayName": "CodeQue - Multiline and Structural Code Search",
"description": "Multiline code search for every language. Structural code search for JavaScript, TypeScript, HTML and CSS",
"repository": {
"type": "git",
"url": "https://github.com/codeque-co/codeque"
},
"bugs": {
"url": "https://github.com/codeque-co/codeque/issues"
},
"version": "0.26.0",
"engines": {
"vscode": "^1.68.0",
"node": ">=14"
},
"categories": [
"Programming Languages",
"Linters",
"Snippets",
"Other"
],
"keywords": [
"typescript",
"javascript",
"json",
"html",
"css",
"python",
"code search",
"find",
"match",
"multiline",
"structural",
"regexp",
"pattern",
"matching",
"ast",
"semantic",
"static",
"analysis",
"syntax",
"syntax aware",
"refactor",
"refactoring",
"replace",
"rewrite",
"rewriting",
"navigation",
"multiline search",
"structural search",
"search and replace",
"regexp search",
"json search"
],
"activationEvents": [
"onStartupFinished"
],
"license": "SEE LICENSE IN LICENSE.md",
"main": "./dist/extension.js",
"icon": "media/logoShort_search.png",
"galleryBanner": {
"color": "#f3e2f9",
"theme": "light"
},
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "codeque-sidebar-view",
"title": "CodeQue",
"icon": "media/logoShort2.png"
}
]
},
"views": {
"codeque-sidebar-view": [
{
"type": "webview",
"id": "codeque-sidebar",
"name": "CodeQue",
"icon": "media/logoShort2.png",
"contextualTitle": "CodeQue"
}
]
},
"commands": [
{
"command": "codeque.searchWithOptionalQuerySelectionFromEditor",
"title": "CQ: Open Search"
},
{
"command": "codeque.searchByEntryPoint",
"title": "CQ: Search by Entry Point"
},
{
"command": "codeque.searchInFolder",
"title": "CQ: Search in Folder"
},
{
"command": "codeque.refresh",
"title": "CQ: Refresh extension"
}
],
"menus": {
"explorer/context": [
{
"command": "codeque.searchByEntryPoint",
"group": "4_search",
"when": "!explorerResourceIsFolder"
},
{
"command": "codeque.searchInFolder",
"group": "4_search",
"when": "explorerResourceIsFolder"
}
],
"editor/context": [
{
"group": "navigation",
"command": "codeque.searchWithOptionalQuerySelectionFromEditor",
"when": "editorHasSelection"
},
{
"group": "navigation",
"command": "codeque.searchByEntryPoint"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn lint && yarn typecheck && yarn run package",
"compile": "webpack",
"watch:extension": "webpack --config webpack.extension.config.js --watch",
"package:extension": "webpack --config webpack.extension.config.js --mode production ",
"watch:webviews": "webpack --config webpack.webviews.config.js --watch",
"package:webviews": "webpack --config webpack.webviews.config.js --mode production",
"package": "yarn package:extension && yarn package:webviews",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint src --ext ts",
"test": "echo 0",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.68.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.18.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"process": "^0.11.10",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@chakra-ui/react": "^2.2.4",
"@codeque/core": "^0.6.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vscode/extension-telemetry": "^0.8.0",
"copy-to-clipboard": "^3.3.2",
"dedent": "^0.7.0",
"framer-motion": "^6.5.1",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-select": "^5.4.0",
"react-simple-code-editor": "^0.11.2"
}
}