svd.ts
Version:
A lightweight, isomorphic TypeScript implementation for computing Singular Value Decomposition (SVD) of matrix in Node.js and browsers.
57 lines (56 loc) • 1.43 kB
JSON
{
"name": "svd.ts",
"version": "1.0.0",
"type": "commonjs",
"description": "A lightweight, isomorphic TypeScript implementation for computing Singular Value Decomposition (SVD) of matrix in Node.js and browsers.",
"keywords": [
"svd",
"singular-value-decomposition",
"matrix",
"linear-algebra",
"mathematics",
"typescript",
"isomorphic",
"browser",
"nodejs",
"dimensionality-reduction",
"feature-extraction",
"pca",
"principal-component-analysis",
"numerical-computing",
"machine-learning",
"data-analysis"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/svd.ts.git"
},
"homepage": "https://github.com/beenotung/svd.ts#readme",
"bugs": {
"url": "https://github.com/beenotung/svd.ts/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsc --noEmit",
"clean": "rimraf dist",
"build": "rimraf dist && tsc -p . && rimraf dist/tsconfig.tsbuildinfo dist/*.test.d.ts dist/*.test.js",
"tsc": "tsc -p ."
},
"devDependencies": {
"@types/node": "^24.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}