-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.71 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
{
"name": "pkgsafe",
"displayName": "pkgsafe",
"description": "Real-time npm vulnerability scanner for package.json",
"version": "0.1.0",
"publisher": "AnanthapadmanabhanM",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/blitzbugg/pkgsafe"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Linters",
"Other"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "pkgsafe.scan",
"title": "pkgsafe: Scan Dependencies"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "pkgsafe",
"title": "pkgsafe",
"icon": "$(shield)"
}
]
},
"views": {
"pkgsafe": [
{
"type": "webview",
"id": "pkgsafe.report",
"name": "Vulnerability Report",
"icon": "$(shield)"
}
]
},
"configuration": {
"title": "pkgsafe",
"properties": {
"pkgsafe.enabled": {
"type": "boolean",
"default": true,
"description": "Enable automatic vulnerability scanning on file open and save."
},
"pkgsafe.severity": {
"type": "string",
"enum": [
"low",
"moderate",
"high",
"critical"
],
"default": "moderate",
"description": "Minimum severity level to flag in the editor."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "20.x"
}
}