-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
143 lines (143 loc) · 4.02 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "dependencygraphforsf",
"displayName": "DependencyGraphForSF",
"description": "Creates dependency graphs for LWC, Aura, VisualForce, Apex Classes, Triggers and Flows",
"version": "1.0.10",
"icon": "images/DependencyGraphForSF.png",
"galleryBanner": {
"color": "#ECECEC",
"theme": "light"
},
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:dependencygraphforsf.graphClasses",
"onCommand:dependencygraphforsf.graphTriggers",
"onCommand:dependencygraphforsf.graphFlows",
"onCommand:dependencygraphforsf.graphLWCs",
"onCommand:dependencygraphforsf.graphAuraComponents",
"onCommand:dependencygraphforsf.graphVisualforcePages",
"onCommand:dependencygraphforsf.graphItem"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "dependencygraphforsf.graphClasses",
"title": "Dependency graph for Apex Classes"
},
{
"command": "dependencygraphforsf.graphTriggers",
"title": "Dependency graph for Apex Triggers"
},
{
"command": "dependencygraphforsf.graphFlows",
"title": "Dependency graph for Flows"
},
{
"command": "dependencygraphforsf.graphLWCs",
"title": "Dependency graph for Lightning Web Components"
},
{
"command": "dependencygraphforsf.graphAuraComponents",
"title": "Dependency graph for Aura Components"
},
{
"command": "dependencygraphforsf.graphVisualforcePages",
"title": "Dependency graph for Visualforce Pages"
},
{
"command": "dependencygraphforsf.graphItem",
"title": "Dependency graph for the selected item"
}
],
"menus": {
"editor/context": [
{
"command": "dependencygraphforsf.graphItem",
"when": " resourceExtname =~ /.trigger|.cls|.cls-meta.xml|.js|.cmp|.html|.page|.flow-meta.xml/ "
}
],
"explorer/context": [
{
"command": "dependencygraphforsf.graphItem",
"when": " resourceExtname =~ /.trigger|.cls|.cls-meta.xml|.js|.cmp|.html|.page|.flow-meta.xml/ "
},
{
"command": "dependencygraphforsf.graphTriggers",
"when": " resourceDirname =~ /triggers/ "
},
{
"command": "dependencygraphforsf.graphLWCs",
"when": " resourceDirname =~ /lwc/ "
},
{
"command": "dependencygraphforsf.graphClasses",
"when": " resourceDirname =~ /classes/ "
},
{
"command": "dependencygraphforsf.graphAuraComponents",
"when": " resourceDirname =~ /aura/ "
},
{
"command": "dependencygraphforsf.graphFlows",
"when": " resourceDirname =~ /flows/ "
},
{
"command": "dependencygraphforsf.graphVisualforcePages",
"when": " resourceDirname =~ /pages/ "
},
{
"command": "dependencygraphforsf.graphTriggers",
"when": " explorerResourceIsFolder && resourceFilename == triggers "
},
{
"command": "dependencygraphforsf.graphLWCs",
"when": " explorerResourceIsFolder && resourceFilename == lwc "
},
{
"command": "dependencygraphforsf.graphClasses",
"when": " explorerResourceIsFolder && resourceFilename == classes "
},
{
"command": "dependencygraphforsf.graphAuraComponents",
"when": " explorerResourceIsFolder && resourceFilename == aura "
},
{
"command": "dependencygraphforsf.graphFlows",
"when": " explorerResourceIsFolder && resourceFilename == flows "
},
{
"command": "dependencygraphforsf.graphVisualforcePages",
"when": " explorerResourceIsFolder && resourceFilename == pages "
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.64.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/fmendes/dependencygraphforsf"
},
"homepage": "https://www.linkedin.com/in/fernandofernandez1/",
"publisher": "FERNANDOFERNANDEZ"
}