@azure/quantum-jobs 1.0.0-alpha.20251013.3 → 1.0.0-alpha.20251015.3
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/quantum-jobs",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20251015.3",
|
|
4
4
|
"description": "An isomorphic client library for Azure Quantum",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
@@ -47,16 +47,20 @@
|
|
|
47
47
|
"@vitest/browser": "^3.2.3",
|
|
48
48
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
49
49
|
"autorest": "latest",
|
|
50
|
+
"cross-env": "^7.0.3",
|
|
50
51
|
"dotenv": "^16.0.0",
|
|
51
52
|
"eslint": "^9.33.0",
|
|
52
53
|
"playwright": "^1.50.1",
|
|
54
|
+
"prettier": "^3.6.2",
|
|
55
|
+
"rimraf": "^6.0.1",
|
|
56
|
+
"tshy": "^3.0.0",
|
|
53
57
|
"typescript": "~5.9.3",
|
|
54
58
|
"vitest": "^3.2.3",
|
|
55
59
|
"@azure-tools/test-credential": "^2.1.2",
|
|
56
|
-
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
57
60
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
58
|
-
"@azure/
|
|
59
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
61
|
+
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
62
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
63
|
+
"@azure/dev-tool": "^1.0.0"
|
|
60
64
|
},
|
|
61
65
|
"sideEffects": false,
|
|
62
66
|
"type": "module",
|
|
@@ -102,12 +106,12 @@
|
|
|
102
106
|
"scripts": {
|
|
103
107
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
104
108
|
"build:samples": "echo Skipped.",
|
|
105
|
-
"check-format": "
|
|
106
|
-
"clean": "
|
|
109
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
110
|
+
"clean": "rimraf --glob dist dist-esm dist-browser dist-test dist-test types *.tgz *.log",
|
|
107
111
|
"execute:js-samples": "node ../../../common/scripts/run-samples.js samples/javascript/",
|
|
108
112
|
"execute:samples": "npm run build:samples && dev-tool samples run dist-samples/javascript dist-samples/typescript/dist/dist-samples/typescript/src/",
|
|
109
113
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
110
|
-
"format": "
|
|
114
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
111
115
|
"generate:client": "autorest --typescript --use=@autorest/modelerfour@4.15.452 swagger/README.md",
|
|
112
116
|
"lint": "eslint package.json src test",
|
|
113
117
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|