forked from deepscan/vscode-deepscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
165 lines (165 loc) · 6.36 KB
/
Copy pathpackage.json
File metadata and controls
165 lines (165 loc) · 6.36 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
{
"name": "vscode-deepscan",
"displayName": "DeepScan",
"description": "Detect bugs and quality issues in JavaScript, TypeScript, React and Vue.js more precisely",
"version": "1.71.0",
"author": "DeepScan",
"publisher": "DeepScan",
"pricing": "Trial",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deepscan/vscode-deepscan.git"
},
"icon": "deepscan_icon.png",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Linters"
],
"keywords": [
"javascript",
"typescript",
"react",
"linters",
"vuejs"
],
"activationEvents": [
"*"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "DeepScan",
"properties": {
"deepscan.enable": {
"type": "boolean",
"default": false,
"description": "Controls whether DeepScan inspection should be enabled."
},
"deepscan.server": {
"type": "string",
"default": "https://deepscan.io",
"description": "Configures the DeepScan server url."
},
"deepscan.proxy": {
"type": "string",
"description": "Configures the proxy url. If not set, it will be taken from the https_proxy environment variable. If your proxy requires a custom CA certificate, specify the certificate path in the NODE_EXTRA_CA_CERTS environment variable."
},
"deepscan.ignoreConfirmWarning": {
"type": "boolean",
"description": "Controls whether you allow transferring your code to the DeepScan server without prompt. Transferred code is completely deleted right after the inspection.",
"default": false
},
"deepscan.ignoreRules": {
"type": "array",
"description": "Configures the rules to be ignored. (Restart required)",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"deepscan.ignorePatterns": {
"type": "array",
"description": "Configures the files to be ignored. (Restart required)",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"deepscan.fileSuffixes": {
"type": "array",
"description": "Configures additional suffixes for files to analyze. (Restart required)",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"deepscan.showDecorators": {
"type": "boolean",
"default": true,
"description": "Controls whether the problem of the code should be shown along with the code."
},
"deepscan.serverEmbedded.enable": {
"type": "boolean",
"default": false,
"description": "Controls whether DeepScan inspection should be executed via the embedded server rather than DeepScan server. (Restart required)"
},
"deepscan.serverEmbedded.serverJar": {
"type": "string",
"description": "Configures the JAR file for the embedded server. (Restart required)"
},
"deepscan.serverEmbedded.license": {
"type": "string",
"description": "Configures the license for the embedded analysis."
},
"deepscan.serverEmbedded.eslint.enable": {
"type": "boolean",
"default": false,
"description": "Controls whether ESLint analysis should be executed."
},
"deepscan.serverEmbedded.eslint.merge": {
"type": "string",
"default": "deepscan",
"description": "Option for how identical issues of DeepScan and ESLint are merged. ('deepscan' | 'eslint' | 'both')"
}
}
},
"commands": [
{
"category": "DeepScan",
"command": "deepscan.inspectProject",
"title": "Inspect Project"
},
{
"category": "DeepScan",
"command": "deepscan.clearProject",
"title": "Clear Project Problems"
},
{
"category": "DeepScan",
"command": "deepscan.setToken",
"title": "Configure Access Token"
},
{
"category": "DeepScan",
"command": "deepscan.deleteToken",
"title": "Delete Access Token"
},
{
"category": "DeepScan",
"command": "deepscan.showTokenInfo",
"title": "Show Access Token Info"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile:client": "tsc -p ./client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"compile": "npm run compile:client && npm run compile:server",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"install-server": "npm run compile:client && npm run compile:server-to-client",
"deploy": "vsce publish",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^14.18.45",
"@vscode/vsce": "^2.16.0",
"typescript": "^4.3.2"
},
"dependencies": {}
}