-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.34 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.34 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
{
"name": "@microsoft/vscode-azext-azureutils",
"author": "Microsoft Corporation",
"version": "4.0.1",
"description": "Common Azure utils for developing Azure extensions for VS Code",
"tags": [
"azure",
"vscode"
],
"keywords": [
"azure",
"vscode"
],
"module": "dist/esm/src/index.js",
"main": "dist/cjs/src/index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azuretools"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-azuretools/issues"
},
"homepage": "https://github.com/Microsoft/vscode-azuretools/blob/main/azure/README.md",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./",
"build:cjs": "tsc -p ./ --outDir ./dist/cjs --module nodenext --moduleResolution nodenext --declaration false",
"lint": "eslint --max-warnings 0",
"test": "vscode-test",
"package": "npm pack",
"l10n": "npx @vscode/l10n-dev export --outDir ./l10n ./src"
},
"engines": {
"vscode": "^1.105.0"
},
"dependencies": {
"@azure/arm-authorization": "^9.0.0",
"@azure/arm-authorization-profile-2020-09-01-hybrid": "^2.1.0",
"@azure/arm-msi": "^2.2.0",
"@azure/arm-resources": "^5.0.0",
"@azure/arm-resources-profile-2020-09-01-hybrid": "^2.1.0",
"@azure/arm-resources-subscriptions": "^2.1.0",
"@azure/arm-storage": "^18.6.0",
"@azure/arm-storage-profile-2020-09-01-hybrid": "^2.1.0",
"@azure/core-client": "^1.10.1",
"@azure/core-rest-pipeline": "^1.22.2",
"@azure/logger": "^1.3.0",
"@microsoft/vscode-azext-azureauth": "^6.0.0-alpha.6",
"@microsoft/vscode-azext-utils": "^4.0.4",
"@microsoft/vscode-azureresources-api": "^3.1.0",
"semver": "^7.7.4"
},
"peerDependencies": {
"@azure/ms-rest-azure-env": "^2.0.0"
},
"devDependencies": {
"@azure/core-auth": "^1.10.1",
"@azure/core-paging": "^1.6.2",
"@microsoft/vscode-azext-eng": "1.0.0-alpha.12",
"@types/node": "22.x",
"@types/semver": "^7.7.1",
"@types/vscode": "1.105.0",
"@vscode/test-cli": "*",
"@vscode/test-electron": "*"
}
}