-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.17 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.17 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
86
87
88
89
{
"name": "code-flow-visualizer",
"displayName": "Code Flow Visualizer",
"description": "Visualize code structure and function call relationships in real-time",
"version": "0.0.4",
"icon": "CodeFlowIcon.png",
"publisher": "codeflowio",
"galleryBanner.color": {
"color": "21214c",
"theme": "dark"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Visualization",
"Programming Languages"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:python",
"onLanguage:java"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codeFlowVisualizer.start",
"title": "Code Flow: Start Visualization"
},
{
"command": "codeFlowVisualizer.analyzeCurrentFile",
"title": "Code Flow: Analyze Current File"
},
{
"command": "codeFlowVisualizer.analyzeWorkspace",
"title": "Code Flow: Analyze Entire Workspace"
},
{
"command": "codeFlowVisualizer.resetWelcome",
"title": "Code Flow: Reset Welcome Screen"
}
],
"keybindings": [
{
"command": "codeFlowVisualizer.start",
"key": "ctrl+alt+v",
"mac": "cmd+alt+v"
}
],
"menus": {
"editor/context": [
{
"command": "codeFlowVisualizer.analyzeCurrentFile",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "echo 'No linting configured'",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.3.8",
"typescript": "^5.3.0"
},
"dependencies": {
"@google/genai": "^1.37.0",
"dotenv": "^17.2.3",
"node-gyp-build": "^4.8.4",
"tree-sitter": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0"
},
"overrides": {
"tree-sitter-java": {
"tree-sitter": "$tree-sitter"
}
}
}