numpy-ts 0.1.0 → 0.3.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": "numpy-ts",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Complete NumPy implementation for TypeScript and JavaScript (under construction)",
5
5
  "main": "dist/numpy-ts.node.cjs",
6
6
  "browser": "dist/numpy-ts.browser.js",
@@ -54,10 +54,10 @@
54
54
  "bench:build": "esbuild benchmarks/src/index.ts --bundle --platform=node --format=cjs --outfile=benchmarks/dist/bench.cjs",
55
55
  "bench": "npm run bench:build && node benchmarks/dist/bench.cjs",
56
56
  "bench:quick": "npm run bench:build && node benchmarks/dist/bench.cjs --quick",
57
- "bench:standard": "npm run bench:build && node benchmarks/dist/bench.cjs --standard",
58
- "bench:full": "npm run bench:build && node benchmarks/dist/bench.cjs --full",
57
+ "bench:large": "npm run bench:build && node benchmarks/dist/bench.cjs --large",
59
58
  "bench:category": "npm run bench:build && node benchmarks/dist/bench.cjs --category",
60
- "bench:view": "open benchmarks/results/plots/latest.html || xdg-open benchmarks/results/plots/latest.html"
59
+ "bench:view": "open benchmarks/results/plots/latest.html || xdg-open benchmarks/results/plots/latest.html",
60
+ "bench:large:view": "open benchmarks/results/plots/latest-large.html || xdg-open benchmarks/results/plots/latest-large.html"
61
61
  },
62
62
  "keywords": [
63
63
  "numpy",
@@ -106,12 +106,14 @@
106
106
  "vitest": "^4.0.3"
107
107
  },
108
108
  "dependencies": {
109
- "@stdlib/blas": "^0.3.3",
110
- "@stdlib/ndarray": "^0.3.3"
109
+ "@stdlib/blas": "^0.3.3"
111
110
  },
112
111
  "engines": {
113
112
  "node": ">=18.0.0"
114
113
  },
114
+ "overrides": {
115
+ "js-yaml": ">=4.1.1"
116
+ },
115
117
  "lint-staged": {
116
118
  "*.ts": [
117
119
  "eslint --fix",