-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 2.6 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
{
"name": "thingworxvcs",
"displayName": "ThingWorxVCS",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.72.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:thingworxvcs.activate",
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "thingworxvcs.export",
"title": "Pull Entities",
"icon": "$(cloud-download)"
},
{
"command": "thingworxvcs.extract",
"title": "Extract Services",
"icon": "$(zap)"
},
{
"command": "thingworxvcs.activate",
"title": "Activate ThingWorxVCS"
},
{
"command": "thingworxvcs.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "thingworxvcs.stats",
"title": "Show Dashboard",
"icon": "$(refresh)"
}
],
"views": {
"thingworx-vcs": [
{
"id": "entities",
"name": "ThingWorx Entities",
"icon": "media/twx.svg",
"contextualTitle": "ThingWorx Entities"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "thingworx-vcs",
"title": "ThingWorx VCS",
"icon": "media/twx.svg"
}
]
},
"menus": {
"view/title": [
{
"command": "thingworxvcs.extract",
"when": "view == entities",
"group": "navigation",
"icon": "media/dark/unzip.svg"
},
{
"command": "thingworxvcs.export",
"when": "view == entities",
"icon": "media/dark/download.svg",
"group": "navigation"
},
{
"command": "thingworxvcs.refresh",
"when": "view == entities",
"group": "navigation"
}
]
},
"viewsWelcome": [
{
"view": "entities",
"contents": "No node dependencies found [learn more](https://www.npmjs.com/)."
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.72.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"eslint": "^8.24.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.8.4",
"@vscode/test-electron": "^2.1.5"
},
"dependencies": {
"axios": "^1.1.3",
"easytimer.js": "^4.5.4",
"extract-zip": "^2.0.1",
"luxon": "^3.1.0",
"xml2js": "^0.4.23"
},
"extensionDependencies": [
"vscode.git"
]
}