-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.77 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.77 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
{
"name": "sarif-explorer",
"displayName": "SARIF Explorer",
"description": "SARIF Explorer: Explore static analysis results effectively and enjoyably.",
"version": "1.3.0",
"publisher": "trailofbits",
"author": {
"name": "Trail of Bits"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://www.trailofbits.com/",
"icon": "media/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/trailofbits/vscode-sarif-explorer"
},
"bugs": {
"url": "https://github.com/trailofbits/vscode-sarif-explorer/issues"
},
"categories": [
"Visualization",
"Other"
],
"keywords": [
"sarif",
"static analysis",
"auditing"
],
"engines": {
"vscode": "^1.78.0"
},
"activationEvents": [
"onLanguage:json",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "sarif-explorer.showSarifExplorer",
"title": "SARIF Explorer: Show SARIF Explorer"
},
{
"command": "sarif-explorer.openSarifFile",
"title": "SARIF Explorer: Open SARIF File"
},
{
"command": "sarif-explorer.resetWorkspaceData",
"title": "SARIF Explorer: Reset Workspace Data"
}
],
"configuration": [
{
"order": 1,
"properties": {
"sarif-explorer.showFullPathInResultsTable": {
"type": "boolean",
"default": false,
"description": "Show the full path of a result in SARIF Explorer's result table."
}
}
}
],
"languages": [
{
"id": "json",
"extensions": [
".sarif"
]
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"vscode:package": "vsce package",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint --color src",
"lint:fix": "eslint src --fix",
"format": "biome format --write .",
"format:check": "biome check --formatter-enabled=true --linter-enabled=false .",
"typecheck": "tsc --noEmit",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^24.0.0",
"@types/vscode": "^1.74.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vscode/test-electron": "^2.2.1",
"@vscode/vsce": "^3.0.0",
"css-loader": "^7.1.4",
"eslint": "10.0.2",
"glob": "^13.0.6",
"mocha": "^11.7.5",
"sass": "^1.57.1",
"sass-loader": "16.0.7",
"style-loader": "4.0.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@vscode/codicons": "0.0.45"
}
}