@azure/attestation 1.0.2-alpha.20251008.1 → 1.0.2-alpha.20251015.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/attestation",
|
|
3
|
-
"version": "1.0.2-alpha.
|
|
3
|
+
"version": "1.0.2-alpha.20251015.1",
|
|
4
4
|
"description": "Javascript/Typescript client implementation for the Microsoft Azure Attestation service.",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
@@ -59,17 +59,21 @@
|
|
|
59
59
|
"@vitest/browser": "^3.2.3",
|
|
60
60
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
61
61
|
"buffer": "^6.0.0",
|
|
62
|
+
"cross-env": "^7.0.3",
|
|
62
63
|
"dotenv": "^16.0.0",
|
|
63
64
|
"eslint": "^9.33.0",
|
|
64
65
|
"playwright": "^1.50.1",
|
|
66
|
+
"prettier": "^3.6.2",
|
|
67
|
+
"rimraf": "^6.0.1",
|
|
65
68
|
"safe-buffer": "^5.2.1",
|
|
66
|
-
"
|
|
69
|
+
"tshy": "^3.0.0",
|
|
70
|
+
"typescript": "~5.9.3",
|
|
67
71
|
"vitest": "^3.2.3",
|
|
72
|
+
"@azure-tools/test-credential": "^2.1.2",
|
|
73
|
+
"@azure-tools/test-recorder": "^4.1.1",
|
|
68
74
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
69
75
|
"@azure/dev-tool": "^1.0.0",
|
|
70
|
-
"@azure
|
|
71
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
72
|
-
"@azure-tools/test-recorder": "^4.1.1"
|
|
76
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
73
77
|
},
|
|
74
78
|
"//sampleConfiguration": {
|
|
75
79
|
"skipFolder": false,
|
|
@@ -121,11 +125,11 @@
|
|
|
121
125
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
122
126
|
"build:nodebrowser": "dev-tool run build-test",
|
|
123
127
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
124
|
-
"check-format": "
|
|
125
|
-
"clean": "
|
|
128
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
129
|
+
"clean": "rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
126
130
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
127
131
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
128
|
-
"format": "
|
|
132
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
129
133
|
"generate:client": "autorest --typescript ./swagger/README.md",
|
|
130
134
|
"lint": "eslint package.json src test",
|
|
131
135
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|