@tangent.to/lina 0.1.0 → 0.1.1
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 +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangent.to/lina",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Linear algebra for JavaScript (ESM): LU, QR, Cholesky, SVD, symmetric eigen, least squares. scipy.linalg-validated.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"build:browser": "esbuild src/index.js --bundle --platform=browser --format=esm --target=es2020 --outfile=dist/index.js --sourcemap --minify --keep-names",
|
|
27
27
|
"jsr:publish": "deno publish --allow-dirty",
|
|
28
28
|
"jsr:publish:dry-run": "deno publish --dry-run --allow-dirty",
|
|
29
|
-
"deno:check": "deno check src/index.js"
|
|
29
|
+
"deno:check": "deno check src/index.js",
|
|
30
|
+
"version": "node scripts/sync-version.mjs && git add deno.json"
|
|
30
31
|
},
|
|
31
32
|
"keywords": [
|
|
32
33
|
"linalg",
|
|
@@ -52,4 +53,4 @@
|
|
|
52
53
|
"esbuild": "^0.25.11",
|
|
53
54
|
"vitest": "^1.6.0"
|
|
54
55
|
}
|
|
55
|
-
}
|
|
56
|
+
}
|