-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.06 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
{
"name": "ctrace-audit",
"displayName": "Ctrace Audit",
"description": "Integration for Ctrace CLI Audit Tool",
"version": "0.1.0",
"publisher": "CoreTrace",
"icon": "icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"keywords": [
"c",
"cpp",
"security",
"static analysis",
"audit",
"sarif"
],
"repository": {
"type": "git",
"url": "https://github.com/CoreTrace/coretrace-vscode.git"
},
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "ctrace-sidebar-view",
"title": "Ctrace Audit",
"icon": "$(shield)"
}
]
},
"views": {
"ctrace-sidebar-view": [
{
"type": "webview",
"id": "ctrace-audit-view",
"name": "Audit Dashboard",
"icon": "$(shield)"
}
]
},
"commands": [
{
"command": "ctrace.runAnalysis",
"title": "Run Analysis"
},
{
"command": "ctrace.runWorkspaceAnalysis",
"title": "Run Workspace Analysis"
},
{
"command": "ctrace.clearAnalysisCache",
"title": "Clear Analysis Cache"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run copy-lucide && tsc -p ./",
"watch": "npm run copy-lucide && tsc -watch -p ./",
"copy-lucide": "node scripts/copy-lucide.cjs",
"test": "vscode-test",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.130",
"@types/tar": "^6.1.13",
"@types/vscode": "~1.82.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"lucide": "^0.575.0",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.13.6",
"tar": "^7.5.13"
}
}