iterflow 0.9.0 → 0.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iterflow",
3
- "version": "0.9.0",
3
+ "version": "0.12.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",
@@ -27,12 +27,16 @@
27
27
  "test:watch": "vitest",
28
28
  "test:coverage": "vitest run --coverage",
29
29
  "test:types": "tsd",
30
+ "test:examples": "for f in examples/*.ts; do npx tsx $f || exit 1; done",
30
31
  "test:production": "vitest run tests/production/",
31
32
  "profile:production": "node scripts/production-profiler.js",
32
33
  "analyze:bundle": "bash scripts/analyze-bundle.sh",
33
34
  "lint": "eslint src --ext .ts",
34
35
  "format": "prettier --write \"src/**/*.ts\"",
35
- "docs": "typedoc src/index.ts",
36
+ "docs": "typedoc --options typedoc-markdown.json",
37
+ "docs:html": "typedoc src/index.ts",
38
+ "docs:copy": "rm -rf website/public/api && cp -r docs/api-generated website/public/api",
39
+ "docs:preview": "npm run docs:html && open docs/api-generated/index.html",
36
40
  "security": "bash scripts/security-check.sh",
37
41
  "security:audit": "npm audit --audit-level=moderate",
38
42
  "security:fix": "npm audit fix",
@@ -41,7 +45,7 @@
41
45
  "validate-commits": "node scripts/validate-commits.js",
42
46
  "prepublishOnly": "npm run build && npm test && npm run test:types",
43
47
  "website:dev": "cd website && npm run dev",
44
- "website:build": "npm run build && cd website && npm run build && cd .. && npm run docs",
48
+ "website:build": "npm run build && npm run docs:html && npm run docs:copy && cd website && npm run build",
45
49
  "bench:transformations": "vitest bench --run benchmarks/transformations.bench.ts",
46
50
  "bench:statistics": "vitest bench --run benchmarks/statistics.bench.ts",
47
51
  "bench:windowing": "vitest bench --run benchmarks/windowing.bench.ts",
@@ -105,7 +109,7 @@
105
109
  "@types/lodash": "^4.17.20",
106
110
  "@types/node": "^20.0.0",
107
111
  "@types/ramda": "^0.31.1",
108
- "@vitest/coverage-v8": "^2.1.9",
112
+ "@vitest/coverage-v8": "^4.0.16",
109
113
  "eslint": "^9.0.0",
110
114
  "fast-check": "^4.3.0",
111
115
  "lodash": "^4.17.21",
@@ -113,9 +117,13 @@
113
117
  "ramda": "^0.32.0",
114
118
  "tsd": "^0.33.0",
115
119
  "tsup": "^8.0.0",
120
+ "tsx": "^4.21.0",
116
121
  "typedoc": "^0.26.0",
122
+ "typedoc-plugin-coverage": "^3.4.1",
123
+ "typedoc-plugin-markdown": "^4.2.3",
124
+ "typedoc-plugin-mdn-links": "^4.0.15",
117
125
  "typescript": "^5.6.0",
118
126
  "typescript-eslint": "^8.0.0",
119
- "vitest": "^2.0.0"
127
+ "vitest": "^4.0.16"
120
128
  }
121
129
  }