-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.09 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.09 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
{
"name": "vscode-debug-utils",
"displayName": "VSCode PerfTips",
"author": {
"name": "Andreas Hollandt"
},
"repository": {
"url": "https://github.com/Trass3r/vscode-debug-utils"
},
"description": "Implements debugger PerfTips as known from Visual Studio",
"publisher": "trass3r",
"license": "MIT",
"version": "0.0.3",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Debuggers",
"Other"
],
"activationEvents": [
"onDebugAdapterProtocolTracker"
],
"main": "./out/extension.js",
"scripts": {
"bundle": "./node_modules/.bin/esbuild src/extension.ts --bundle --target=es2018 --minify --sourcemap --external:vscode --outfile=./out/extension.js",
"vscode:prepublish": "npm run compile",
"package": "node_modules/.bin/vsce package",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"extensionDependencies": [
],
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.5",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vscode/debugprotocol": "^1.57.0",
"@vscode/test-electron": "^2.1.5",
"esbuild": "^0.14.54",
"eslint": "^8.21.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"vsce": "^2.10.0"
},
"contributes": {
"configuration": {
"title": "PerfTips",
"properties": {
"debug-utils.logDAP": {
"type": "boolean",
"default": false,
"description": "Log all DAP messages"
}
}
},
"colors": [
{
"id": "debugutils.trailingLineBackgroundColor",
"description": "Specifies the background color of the PerfTips",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "debugutils.trailingLineForegroundColor",
"description": "Specifies the foreground color of the PerfTips",
"defaults": {
"dark": "#99999959",
"light": "#99999959",
"highContrast": "#99999999"
}
}
]
}
}