Last active
March 21, 2026 20:17
-
-
Save maurycy/fa4c3acd9e8e681a609bddc9ad04c4ae to your computer and use it in GitHub Desktop.
package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "profiling-heatmap", | |
| "displayName": "Profiling Heatmap", | |
| "description": "Inline profiling annotations from JSONL sampling profiles", | |
| "version": "0.0.2", | |
| "engines": { | |
| "vscode": "^1.80.0" | |
| }, | |
| "categories": [ | |
| "Other" | |
| ], | |
| "main": "./extension.js", | |
| "contributes": { | |
| "commands": [ | |
| { | |
| "command": "profiling.loadProfile", | |
| "title": "Profiling: Load JSONL Profile" | |
| }, | |
| { | |
| "command": "profiling.clearProfile", | |
| "title": "Profiling: Clear Profile Annotations" | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment