-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.24 KB
/
package.json
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
{
"name": "realtime-debugging",
"private": true,
"displayName": "Real-Time Debugging",
"description": "This extension visualizes how your code is being executed.",
"version": "0.1.0",
"license": "GPL-3.0",
"publisher": "hediet",
"author": {
"email": "[email protected]",
"name": "Henning Dieterichs"
},
"keywords": [
"debugger",
"debug",
"javascript",
"debugging",
"visual",
"realtime",
"real-time",
"logpoint",
"logging",
"log"
],
"readme": "./README.md",
"icon": "docs/logo.png",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onDebugAdapterProtocolTracker"
],
"repository": {
"url": "https://github.com/hediet/vscode-realtime-debugging.git"
},
"bugs": {
"url": "https://github.com/hediet/vscode-realtime-debugging/issues"
},
"main": "./out/extension",
"contributes": {},
"scripts": {
"pub": "vsce publish --yarn",
"package": "vsce package --yarn",
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"dev": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@types/vscode": "1.44.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@hediet/node-reload": "^0.7.3",
"@hediet/std": "0.6.0"
}
}