-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
118 lines (118 loc) · 4.5 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
117
118
{
"name": "codebase-relationship-visualizer",
"displayName": "CodeBase Relationship Visualizer",
"description": "Visualize relationships between files and the codebase file system structure.",
"version": "1.1.3",
"publisher": "jesse-r-s-hines",
"repository": "https://github.com/jesse-r-s-hines/CodeBaseRelationshipVisualizer",
"private": false,
"license": " GPL-3.0-or-later",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Visualization",
"Debuggers"
],
"activationEvents": [
"onCommand:codeBaseRelationshipVisualizer.start",
"onCommand:hyperlinkVisualization.start",
"onCommand:stackTraceVisualization.start",
"onCommand:pythonDependencyVisualization.start",
"onWebviewPanel:codeBaseRelationshipVisualizer"
],
"contributes": {
"commands": [
{
"command": "codeBaseRelationshipVisualizer.start",
"title": "Visualize your codebase",
"category": "CodeBase Relationship Visualizer"
},
{
"command": "hyperlinkVisualization.start",
"title": "Visualize a hyperlink graph",
"category": "CodeBase Relationship Visualizer"
},
{
"command": "stackTraceVisualization.start",
"title": "Visualize the stack trace during a debugger session",
"category": "CodeBase Relationship Visualizer"
},
{
"command": "pythonDependencyVisualization.start",
"title": "Visualize the dependencies between Python files",
"category": "CodeBase Relationship Visualizer"
}
]
},
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run build-prod",
"package": "vsce package",
"publish": "vsce publish",
"build": "npm-run-all build:*",
"build:extension": "webpack --config ./webpack.config.js --env dev",
"build:webview": "webpack --config ./webpack.webview.config.js --env dev",
"build-prod": "npm-run-all build-prod:*",
"build-prod:extension": "webpack --config ./webpack.config.js --env prod",
"build-prod:webview": "webpack --config ./webpack.webview.config.js --env prod",
"lint": "eslint . --ext .ts,.tsx",
"watch": "npm-run-all watch:*",
"watch:extension": "tsc -w -p ./src",
"watch:webview": "webpack --env dev --watch",
"test": "npm-run-all test:*",
"test:unit": "mocha -r ts-node/register 'test/**/*.test.ts' --exclude test/integration/**/*.ts --exclude test/sample-codebases/**/*.ts",
"test:integration": "npm run pretest && node ./dist/test/test/integration/run.js",
"pretest": "tsc --project test/integration",
"generate-docs": "typedoc"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/child-process-promise": "^2.2.2",
"@types/d3": "^7.4.0",
"@types/d3-selection-multi": "^1.0.10",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.184",
"@types/mocha": "^10.0.0",
"@types/node": "^12.12.0",
"@types/text-encoding": "^0.0.36",
"@types/vscode": "^1.47.0",
"@types/vscode-webview": "^1.57.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"@vscode/test-electron": "^2.2.0",
"@vscode/vsce": "^2.15.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"css-loader": "^6.7.1",
"dedent-js": "^1.0.1",
"eslint": "^7.21.0",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"ts-essentials": "^9.3.0",
"ts-loader": "^9.3.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.22",
"typescript": "^4.4.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"child-process-promise": "^2.2.1",
"d3": "^7.4.4",
"d3-context-menu": "^2.1.0",
"d3-selection-multi": "^1.0.1",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"spawn-sync": "^2.0.0",
"text-encoding": "^0.7.0",
"tippy.js": "^6.3.7",
"vscode-debugprotocol": "^1.51.0"
}
}