UNPKG

ml-matrix-convolution

Version:

Matrix convolution: It offers the direct and the fourier transform convolution

56 lines (55 loc) 1.51 kB
{ "name": "ml-matrix-convolution", "version": "2.0.0", "description": "Matrix convolution: It offers the direct and the fourier transform convolution", "type": "module", "exports": "./lib/index.js", "files": [ "lib", "src" ], "scripts": { "check-types": "tsc --noEmit", "clean": "rimraf lib", "eslint": "eslint .", "eslint-fix": "npm run eslint -- --fix", "prepack": "npm run tsc", "prettier": "prettier --check .", "prettier-write": "prettier --write .", "test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier", "test-only": "vitest run --coverage", "tsc": "npm run clean && npm run tsc-build", "tsc-build": "tsc --project tsconfig.build.json" }, "repository": { "type": "git", "url": "https://github.com/mljs/matrix-convolution.git" }, "keywords": [ "machine", "learning", "data", "mining", "datamining" ], "author": "Andrés Castillo", "license": "MIT", "bugs": { "url": "https://github.com/mljs/matrix-convolution/issues" }, "homepage": "https://github.com/mljs/matrix-convolution#readme", "devDependencies": { "@types/node": "^22.15.21", "@vitest/coverage-v8": "^3.1.4", "eslint": "^9.27.0", "eslint-config-cheminfo-typescript": "^18.0.1", "jest-matcher-deep-close-to": "^3.0.2", "prettier": "^3.5.3", "rimraf": "^6.0.1", "typescript": "^5.8.3", "vitest": "^3.1.4" }, "dependencies": { "ml-fft": "^1.3.5" } }