-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.86 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.86 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
{
"author": {
"name": "Tim Heuer"
},
"publisher": "timheuer",
"license": "MIT",
"qna": "https://github.com/timheuer/jsondbg/issues/new",
"name": "jsondbg",
"displayName": "JSON Debug Visualizer",
"description": "Debug variable visualizer for JSON",
"repository": {
"type": "git",
"url": "https://github.com/timheuer/jsondbg.git"
},
"icon": "resources/icon.png",
"version": "0.2.1",
"engines": {
"vscode": "^1.97.0"
},
"browser": "./out/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"categories": [
"Debuggers",
"Other",
"Visualization"
],
"keywords": [
"json",
"debug",
"visualizer",
"debugger",
"variables"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "jsondbg.viewJson",
"title": "View as JSON"
}
],
"menus": {
"debug/variables/context": [
{
"command": "jsondbg.viewJson",
"group": "navigation@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "20.x",
"@types/sinon": "^10.0.20",
"@types/vscode": "^1.97.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.1.5",
"eslint": "^9.21.0",
"glob": "^10.3.10",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"jsoneditor": "^10.2.0"
}
}