@azure/identity-vscode 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +30 -30
package/package.json
CHANGED
|
@@ -1,28 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/identity-vscode",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"sdk-type": "client",
|
|
5
5
|
"description": "Use the Azure Account extension for Visual Studio Code to authenticate with Azure Identity",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
7
7
|
"module": "./dist/esm/index.js",
|
|
8
8
|
"types": "./dist/commonjs/index.d.ts",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
11
|
-
"build:samples": "echo skipped",
|
|
12
|
-
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"",
|
|
13
|
-
"clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
|
|
14
|
-
"execute:samples": "echo skipped",
|
|
15
|
-
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
16
|
-
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"",
|
|
17
|
-
"lint": "eslint package.json src test",
|
|
18
|
-
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
19
|
-
"pack": "npm pack 2>&1",
|
|
20
|
-
"test": "npm run test:node && npm run test:browser",
|
|
21
|
-
"test:browser": "echo skipped",
|
|
22
|
-
"test:node": "echo skipped",
|
|
23
|
-
"test:node:esm": "echo skipped",
|
|
24
|
-
"update-snippets": "dev-tool run update-snippets"
|
|
25
|
-
},
|
|
26
9
|
"files": [
|
|
27
10
|
"dist/",
|
|
28
11
|
"README.md",
|
|
@@ -56,20 +39,20 @@
|
|
|
56
39
|
"tslib": "^2.8.1"
|
|
57
40
|
},
|
|
58
41
|
"devDependencies": {
|
|
59
|
-
"@azure-tools/test-recorder": "^4.1.0",
|
|
60
|
-
"@azure-tools/test-utils-vitest": "^1.0.0",
|
|
61
42
|
"@azure/core-client": "^1.7.0",
|
|
62
|
-
"@azure/dev-tool": "^1.0.0",
|
|
63
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
64
43
|
"@azure/logger": "^1.1.4",
|
|
65
|
-
"@types/node": "^20.
|
|
66
|
-
"@vitest/browser": "^3.
|
|
67
|
-
"@vitest/coverage-istanbul": "^3.
|
|
44
|
+
"@types/node": "^20.19.0",
|
|
45
|
+
"@vitest/browser": "^3.2.3",
|
|
46
|
+
"@vitest/coverage-istanbul": "^3.2.3",
|
|
68
47
|
"dotenv": "^16.0.0",
|
|
69
|
-
"eslint": "^9.
|
|
48
|
+
"eslint": "^9.33.0",
|
|
70
49
|
"playwright": "^1.50.1",
|
|
71
|
-
"typescript": "~5.8.
|
|
72
|
-
"vitest": "^3.
|
|
50
|
+
"typescript": "~5.8.3",
|
|
51
|
+
"vitest": "^3.2.3",
|
|
52
|
+
"@azure-tools/test-recorder": "^4.1.0",
|
|
53
|
+
"@azure-tools/test-utils-vitest": "^1.0.0",
|
|
54
|
+
"@azure/dev-tool": "^1.0.0",
|
|
55
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
73
56
|
},
|
|
74
57
|
"type": "module",
|
|
75
58
|
"tshy": {
|
|
@@ -110,5 +93,22 @@
|
|
|
110
93
|
}
|
|
111
94
|
}
|
|
112
95
|
},
|
|
113
|
-
"react-native": "./dist/react-native/index.js"
|
|
114
|
-
|
|
96
|
+
"react-native": "./dist/react-native/index.js",
|
|
97
|
+
"scripts": {
|
|
98
|
+
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
99
|
+
"build:samples": "echo skipped",
|
|
100
|
+
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"",
|
|
101
|
+
"clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
|
|
102
|
+
"execute:samples": "echo skipped",
|
|
103
|
+
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
104
|
+
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"",
|
|
105
|
+
"lint": "eslint package.json src test",
|
|
106
|
+
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
107
|
+
"pack": "pnpm pack 2>&1",
|
|
108
|
+
"test": "npm run test:node && npm run test:browser",
|
|
109
|
+
"test:browser": "echo skipped",
|
|
110
|
+
"test:node": "echo skipped",
|
|
111
|
+
"test:node:esm": "echo skipped",
|
|
112
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
113
|
+
}
|
|
114
|
+
}
|