-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "varlens",
"displayName": "VarLens",
"description": "VarLens is a powerful Visual Studio Code extension that transforms your debugging experience by providing variable inspection and persistent state tracking across debugging sessions. 🚀",
"version": "0.2.14",
"icon": "logo/logo.png",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Debuggers",
"Programming Languages",
"Other",
"Visualization",
"Testing",
"Formatters",
"Education",
"Snippets"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript"
],
"main": "./dist/extension.js",
"publisher": "ubaid",
"contributes": {
"commands": [
{
"command": "varlens.showState",
"title": "VarLen | ShowState"
},
{
"command": "varlens.exportState",
"title": "VarLens: Export Debug State"
},
{
"command": "varlens.importState",
"title": "VarLens: Import Debug State"
}
]
},
"scripts": {
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map"
},
"repository": {
"type": "git",
"url": "https://github.com/Ubaid-Manzoor/VarLens"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"babel-loader": "^9.2.1",
"browserify-fs": "^1.0.0",
"esbuild": "^0.24.2",
"eslint": "^9.16.0",
"path-browserify": "^1.0.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.4",
"npm-run-all": "^4.1.5"
},
"keywords": [
"varlens",
"var-lens",
"variable lens",
"variable-inspector",
"variable-viewer",
"debugger",
"debug",
"debugging",
"debug-tools",
"javascript",
"typescript",
"js",
"ts",
"state",
"state-management",
"state-inspector",
"hover",
"hover-preview",
"variable-preview",
"code-inspection",
"development",
"developer-tools",
"inspect",
"inspector",
"variable-state",
"variable-tracking",
"value-inspector",
"object-viewer",
"json-viewer",
"scope-inspector",
"scope-aware",
"debug-memory",
"debug-state",
"debug-variables",
"variable-history",
"code-analysis",
"runtime-values",
"value-tracker",
"variable-explorer",
"debug-explorer"
]
}