-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.15 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
{
"publisher": "kermanx",
"name": "speedscope-vscode",
"displayName": "Speedscope Viewer",
"description": "Speedscope viewer with auto refresh",
"type": "module",
"version": "0.0.3",
"private": true,
"categories": [
"Visualization"
],
"extensionKind":[
"ui"
],
"main": "./dist/extension.cjs",
"icon": "./icon.png",
"engines": {
"vscode": "^1.89.0"
},
"contributes": {
"customEditors": [
{
"viewType": "speedscope-vscode.speedscope",
"displayName": "Speedscope",
"priority": "option",
"selector": [
{
"filenamePattern": "*"
}
]
}
]
},
"scripts": {
"build": "tsup --env.NODE_ENV production --treeshake",
"dev": "tsup --watch ./src --env.NODE_ENV development",
"typecheck": "tsc --noEmit",
"vscode:prepublish": "pnpm run build"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"reactive-vscode": "^0.2.9",
"speedscope": "^1.21.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/KermanX/speedscope-vscode.git"
},
"packageManager": "pnpm@9.14.2"
}