ndarray-ts
Version:
A basic N-dimensional array library in TypeScript, similar to NumPy.
42 lines (41 loc) • 964 B
JSON
{
"name": "ndarray-ts",
"version": "1.0.1",
"description": "A basic N-dimensional array library in TypeScript, similar to NumPy.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajasekar-arch/ndArray-TS.git"
},
"keywords": [
"ndarray",
"numpy",
"typescript",
"math",
"array",
"n-dimensional"
],
"author": "RAJASEKAR E C <rajasekar_e_c@outlook.com>",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/rajasekar-arch/ndArray-TS/issues"
},
"homepage": "https://github.com/rajasekar-arch/ndArray-TS#readme",
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"files": [
"dist"
],
"dependencies": {
"ndarray-ts": "^1.0.0"
}
}