-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.44 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.44 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
{
"name": "@microsoft/vscode-azext-azureappservice",
"author": "Microsoft Corporation",
"version": "4.2.2",
"description": "Common tools for developing Azure App Service extensions for VS Code",
"tags": [
"azure",
"vscode"
],
"keywords": [
"azure",
"vscode"
],
"module": "dist/esm/src/index.js",
"main": "dist/cjs/src/index.js",
"types": "dist/esm/src/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/appservice/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/abort-controller": "^1.0.4",
"@azure/arm-appinsights": "^5.0.0-beta.4",
"@azure/arm-appservice": "^18.0.0",
"@azure/arm-operationalinsights": "^8.0.1",
"@azure/arm-resourcegraph": "^5.0.0-beta.3",
"@azure/core-rest-pipeline": "^1.10.3",
"@azure/storage-blob": "^12.3.0",
"@microsoft/vscode-azext-azureutils": "^4.0.0",
"@microsoft/vscode-azext-github": "^2.0.0",
"@microsoft/vscode-azext-utils": "^4.0.3",
"dayjs": "^1.11.2",
"fs-extra": "^10.0.0",
"p-retry": "^3.0.1",
"pretty-bytes": "^5.3.0",
"simple-git": "^3.5.0",
"ws": "^8.5.0",
"yazl": "^2.5.1"
},
"peerDependencies": {
"@azure/ms-rest-azure-env": "^2.0.0",
"@microsoft/vscode-azext-azureappsettings": "^1.0.0"
},
"devDependencies": {
"@azure/core-client": "^1.7.2",
"@microsoft/vscode-azext-eng": "1.0.0-alpha.8",
"@types/fs-extra": "^9.0.13",
"@types/node": "22.x",
"@types/p-retry": "^2.0.0",
"@types/vscode": "1.105.0",
"@types/ws": "^8.5.3",
"@types/yazl": "^2.4.2",
"@vscode/test-cli": "*",
"@vscode/test-electron": "*"
}
}