-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.46 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
{
"name": "adtmanager",
"icon": "logo.png",
"displayName": "Azure Digital Twin Manager",
"repository": {
"url": "https://github.com/WaywardHayward/vscode-ext-adt-model-manager"
},
"publisher": "waywardhayward",
"description": "A VSCode Extension which This extension allows users to create adt workspaces enabling the editing of Azure Digital Twin Models",
"version": "0.0.21",
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Azure",
"Snippets"
],
"activationEvents": [
"onCommand:adtmanager.connect",
"onCommand:adtmanager.models.export",
"onCommand:adtmanager.models.extend",
"onCommand:adtmanager.models.upload",
"onCommand:adtmanager.models.decomission",
"onCommand:adtmanager.models.delete",
"onCommand:adtmanager.models.create"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "adtmanager.connect",
"title": "$(debug-disconnect) Azure Digital Twin: Connect Workspace to Instance"
},
{
"command": "adtmanager.models.create",
"title": "$(cloud-download) Azure Digital Twin: Create A Model"
},
{
"command": "adtmanager.models.export",
"title": "$(cloud-download) Azure Digital Twin: Import Models from Twin Instance into workspace"
},
{
"command": "adtmanager.models.upload",
"title": "$(cloud-upload) Azure Digital Twin: Upload Model"
},
{
"command": "adtmanager.models.decomission",
"title": "$(sync-ignored) Azure Digital Twin: Decommission mission Model"
},
{
"command": "adtmanager.models.extend",
"title": "$(code) Azure Digital Twin: Extend Model"
},
{
"command": "adtmanager.models.delete",
"title": "$(error) Azure Digital Twin: Delete Model"
}
],
"menus": {
"explorer/context": [
{
"command": "adtmanager.models.upload",
"when": "resourceExtname == .json || resourceExtname == .dtdl",
"group": "digitaltwin"
},
{
"command": "adtmanager.models.extend",
"when": "resourceExtname == .json || resourceExtname == .dtdl",
"group": "digitaltwin"
},
{
"command": "adtmanager.models.decomission",
"when": "resourceExtname == .json || resourceExtname == .dtdl",
"group": "digitaltwin"
},
{
"command": "adtmanager.models.delete",
"when": "resourceExtname == .json || resourceExtname == .dtdl",
"group": "digitaltwin"
},
{
"command": "adtmanager.models.create",
"when": "explorerResourceIsFolder || resourceExtname == .json || resourceExtname == .dtdl",
"group": "digitaltwin"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"extensionDependencies": [
"ms-vscode.azure-account",
"vsciot-vscode.vscode-dtdl"
],
"dependencies": {
"@azure/arm-digitaltwins": "^2.1.0",
"@azure/arm-resources": "^4.2.0",
"@azure/arm-subscriptions": "^3.0.0",
"@azure/digital-twins-core": "1.1.0-alpha.20210805.1",
"@azure/identity": "^1.5.0",
"@azure/ms-rest-nodeauth": "^3.0.10",
"ms-rest": "^2.5.4"
}
}