iterflow 0.4.0 → 0.7.0
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 +41 -2
- package/dist/fn/index.cjs +48 -22
- package/dist/fn/index.cjs.map +1 -1
- package/dist/fn/index.js +48 -22
- package/dist/fn/index.js.map +1 -1
- package/dist/index.cjs +86 -115
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -136
- package/dist/index.d.ts +2 -136
- package/dist/index.js +87 -109
- package/dist/index.js.map +1 -1
- package/package.json +20 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iterflow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Powerful iterator utilities for ES2022+ with statistical operations, windowing, and lazy evaluation. Forward compatible with ES2025 iterator helpers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -41,7 +41,25 @@
|
|
|
41
41
|
"validate-commits": "node scripts/validate-commits.js",
|
|
42
42
|
"prepublishOnly": "npm run build && npm test && npm run test:types",
|
|
43
43
|
"website:dev": "cd website && npm run dev",
|
|
44
|
-
"website:build": "npm run build && cd website && npm run build && cd .. && npm run docs"
|
|
44
|
+
"website:build": "npm run build && cd website && npm run build && cd .. && npm run docs",
|
|
45
|
+
"bench:transformations": "vitest bench --run benchmarks/transformations.bench.ts",
|
|
46
|
+
"bench:statistics": "vitest bench --run benchmarks/statistics.bench.ts",
|
|
47
|
+
"bench:windowing": "vitest bench --run benchmarks/windowing.bench.ts",
|
|
48
|
+
"bench:terminals": "vitest bench --run benchmarks/terminals.bench.ts",
|
|
49
|
+
"bench:lazy-evaluation": "vitest bench --run benchmarks/lazy-evaluation.bench.ts",
|
|
50
|
+
"bench:memory-profiling": "vitest bench --run benchmarks/memory-profiling.bench.ts",
|
|
51
|
+
"bench:production-profiling": "vitest bench --run benchmarks/production-profiling.bench.ts",
|
|
52
|
+
"bench:quick": "VITEST_BENCH_TIME=1000 node scripts/run-benchmarks.cjs",
|
|
53
|
+
"bench:all": "node scripts/run-benchmarks.cjs",
|
|
54
|
+
"bench:report": "node scripts/generate-benchmark-report.cjs",
|
|
55
|
+
"bench:visualize": "python3 scripts/visualize_benchmarks.py",
|
|
56
|
+
"bench:visualize:bars": "python3 scripts/visualize_benchmarks.py --chart-type seaborn-bars",
|
|
57
|
+
"bench:visualize:scatter": "python3 scripts/visualize_benchmarks.py --chart-type scatter -o benchmarks/results/competitive_scatter.png",
|
|
58
|
+
"bench:charts": "python3 scripts/visualize_benchmarks.py --show",
|
|
59
|
+
"bench:update-readme": "node scripts/update-readme-benchmarks.cjs",
|
|
60
|
+
"bench:update-changelog": "node scripts/update-changelog-benchmarks.cjs",
|
|
61
|
+
"bench:full": "npm run bench:all && npm run bench:report && npm run bench:visualize",
|
|
62
|
+
"bench:workflow": "bash scripts/run-benchmarks-full.sh"
|
|
45
63
|
},
|
|
46
64
|
"keywords": [
|
|
47
65
|
"iterator",
|