@azure-rest/ai-vision-face 1.0.0-alpha.20250213.1 → 1.0.0-alpha.20250217.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 +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-rest/ai-vision-face",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20250217.1",
|
|
4
4
|
"description": "Face API REST Client",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@azure/abort-controller": "^2.1.2",
|
|
60
60
|
"@azure/core-auth": "^1.9.0",
|
|
61
61
|
"@azure/core-lro": "^3.0.0",
|
|
62
|
-
"@azure/core-rest-pipeline": "^1.
|
|
62
|
+
"@azure/core-rest-pipeline": "^1.19.0",
|
|
63
63
|
"@azure/logger": "^1.1.4",
|
|
64
64
|
"tslib": "^2.8.1"
|
|
65
65
|
},
|
|
@@ -71,21 +71,19 @@
|
|
|
71
71
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
72
72
|
"@azure/identity": "^4.6.0",
|
|
73
73
|
"@types/node": "^18.0.0",
|
|
74
|
-
"@vitest/browser": "^3.0.
|
|
75
|
-
"@vitest/coverage-istanbul": "^3.0.
|
|
74
|
+
"@vitest/browser": "^3.0.5",
|
|
75
|
+
"@vitest/coverage-istanbul": "^3.0.5",
|
|
76
76
|
"dotenv": "^16.0.0",
|
|
77
77
|
"eslint": "^9.9.0",
|
|
78
78
|
"playwright": "^1.50.1",
|
|
79
79
|
"prettier": "^3.2.5",
|
|
80
|
-
"tshy": "^1.11.1",
|
|
81
80
|
"typescript": "~5.7.2",
|
|
82
|
-
"vitest": "^3.0.
|
|
81
|
+
"vitest": "^3.0.5"
|
|
83
82
|
},
|
|
84
83
|
"scripts": {
|
|
85
|
-
"audit": "node ../../../common/scripts/rush-audit.js && dev-tool run vendored rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
86
84
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
87
85
|
"build:samples": "echo skipped",
|
|
88
|
-
"build:test": "npm run clean &&
|
|
86
|
+
"build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test",
|
|
89
87
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ",
|
|
90
88
|
"clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
91
89
|
"execute:samples": "echo skipped",
|
|
@@ -99,9 +97,9 @@
|
|
|
99
97
|
"lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
100
98
|
"minify": "dev-tool run vendored uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
|
|
101
99
|
"pack": "npm pack 2>&1",
|
|
102
|
-
"test": "npm run clean &&
|
|
100
|
+
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node && dev-tool run bundle && npm run unit-test:browser && npm run integration-test",
|
|
103
101
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
104
|
-
"test:node": "npm run clean &&
|
|
102
|
+
"test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node",
|
|
105
103
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
106
104
|
"unit-test:browser": "echo skipped",
|
|
107
105
|
"unit-test:node": "dev-tool run test:vitest",
|