numpy-ts 0.13.0 → 1.0.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.
@@ -187,7 +187,7 @@ export declare function binary_repr(num: number, width?: number | null): string;
187
187
  * // [4 5 6]]
188
188
  * ```
189
189
  */
190
- export declare function array2string(a: ArrayStorage, max_line_width?: number | null, precision?: number | null, suppress_small?: boolean | null, separator?: string, prefix?: string, suffix?: string, threshold?: number | null, edgeitems?: number | null): string;
190
+ export declare function array2string(a: ArrayStorage, max_line_width?: number | null, precision?: number | null, suppress_small?: boolean | null, separator?: string, prefix?: string, suffix?: string, threshold?: number | null, edgeitems?: number | null, floatmode?: 'fixed' | 'unique' | 'maxprec' | 'maxprec_equal' | null, sign?: ' ' | '+' | '-' | null): string;
191
191
  /**
192
192
  * Return the string representation of an array
193
193
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numpy-ts",
3
- "version": "0.13.0",
3
+ "version": "1.0.0",
4
4
  "description": "Complete NumPy implementation for TypeScript and JavaScript (94% API coverage)",
5
5
  "main": "dist/numpy-ts.node.cjs",
6
6
  "browser": "dist/numpy-ts.browser.js",
@@ -64,7 +64,9 @@
64
64
  "bench:category": "npm run bench:build && node benchmarks/dist/bench.cjs --category",
65
65
  "bench:view": "open benchmarks/results/plots/latest.html || xdg-open benchmarks/results/plots/latest.html",
66
66
  "bench:large:view": "open benchmarks/results/plots/latest-large.html || xdg-open benchmarks/results/plots/latest-large.html",
67
- "compare-api": "python3 scripts/compare-api-coverage.py"
67
+ "bench:docs": "python3 scripts/generate-bench-docs.py",
68
+ "compare-api": "python3 scripts/compare-api-coverage.py",
69
+ "compare-docs-api": "python3 scripts/compare-docs-api-coverage.py"
68
70
  },
69
71
  "keywords": [
70
72
  "numpy",
@@ -88,7 +90,7 @@
88
90
  "bugs": {
89
91
  "url": "https://github.com/dupontcyborg/numpy-ts/issues"
90
92
  },
91
- "homepage": "https://github.com/dupontcyborg/numpy-ts",
93
+ "homepage": "https://numpyts.dev",
92
94
  "devDependencies": {
93
95
  "@rollup/plugin-alias": "^6.0.0",
94
96
  "@rollup/plugin-node-resolve": "^16.0.1",