@scanly/benchmark 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/README.md +17 -3
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
-
# @scanly/benchmark
|
|
2
|
-
|
|
3
|
-
Machine-readable benchmark contracts
|
|
1
|
+
# @scanly/benchmark
|
|
2
|
+
|
|
3
|
+
Machine-readable benchmark contracts, conformance evaluation, and regression gates for Scanly SDK v2.0.1.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install @scanly/benchmark
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { BENCHMARK_SCHEMA_VERSION } from "@scanly/benchmark";
|
|
11
|
+
|
|
12
|
+
console.log(BENCHMARK_SCHEMA_VERSION); // 2.0
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Node pipeline timing, browser timing, and physical-device timing are separate measurement domains and must retain their labels. This advanced/internal-facing public package is for tooling and evidence integrations, not barcode decoding.
|
|
16
|
+
|
|
17
|
+
Version: 2.0.1 · [Benchmark methodology](https://github.com/Yangjunjie-Lin/Scanly/blob/main/docs/benchmarking/methodology.md)
|
package/package.json
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scanly/benchmark",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Benchmark contracts, conformance evaluation, and regression gates for Scanly",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Benchmark contracts, conformance evaluation, and regression gates for Scanly SDK",
|
|
5
|
+
"keywords": ["barcode", "benchmark", "conformance", "regression", "scanner", "scanly"],
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Yangjunjie-Lin/Scanly.git",
|
|
9
|
+
"directory": "packages/benchmark"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/Yangjunjie-Lin/Scanly#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Yangjunjie-Lin/Scanly/issues"
|
|
14
|
+
},
|
|
5
15
|
"license": "MIT",
|
|
6
16
|
"type": "module",
|
|
7
17
|
"sideEffects": false,
|