numpy-ts 0.13.1 → 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.
- package/README.md +29 -251
- package/dist/esm/index.js +1 -1
- package/dist/numpy-ts.browser.js +1 -1
- package/dist/numpy-ts.node-io.cjs +1 -1
- package/dist/numpy-ts.node-io.cjs.map +1 -1
- package/dist/numpy-ts.node-io.mjs +1 -1
- package/dist/numpy-ts.node-io.mjs.map +1 -1
- package/dist/numpy-ts.node.cjs +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "numpy-ts",
|
|
3
|
-
"version": "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
|
-
"
|
|
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://
|
|
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",
|