-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.26 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.26 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
74
{
"name": "@microsoft/vscode-azext-azureauth",
"author": "Microsoft Corporation",
"version": "6.0.0-alpha.8",
"description": "Azure authentication helpers for Visual Studio Code",
"tags": [
"azure",
"vscode"
],
"keywords": [
"azure",
"vscode"
],
"exports": {
".": {
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js",
"types": "./dist/esm/src/index.d.ts"
},
"./azdo": {
"import": "./dist/esm/src/providers/AzureDevOpsSubscriptionProvider.js",
"require": "./dist/cjs/src/providers/AzureDevOpsSubscriptionProvider.js",
"types": "./dist/esm/src/providers/AzureDevOpsSubscriptionProvider.d.ts"
}
},
"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/auth/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": "mocha",
"package": "npm pack",
"l10n": "npx @vscode/l10n-dev export --outDir ./l10n ./src"
},
"engines": {
"vscode": "^1.106.0"
},
"devDependencies": {
"@azure/core-auth": "^1.10.1",
"@microsoft/vscode-azext-eng": "1.0.0-alpha.13",
"@types/node": "22.x",
"@types/vscode": "1.106.0"
},
"dependencies": {
"@azure/arm-resources-subscriptions": "^2.1.0",
"@azure/core-rest-pipeline": "^1.22.2",
"@azure/identity": "^4.13.1",
"@azure/ms-rest-azure-env": "^2.0.0"
},
"publishConfig": {
"tag": "alpha"
},
"mocha": {
"ui": "tdd",
"node-option": [
"import=tsx"
],
"spec": [
"test/**/*.test.ts"
]
}
}