UNPKG

kmeans-ts

Version:

A fast, efficient k-means clustering implementation in TypeScript

77 lines (76 loc) 1.74 kB
{ "name": "kmeans-ts", "author": "@GoldinGuy seth@goldin.io", "version": "1.0.4", "description": "A fast, efficient k-means clustering implementation in TypeScript", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "module": "dist/k-means-ts.esm.js", "repository": { "type": "git", "url": "git+https://github.com/GoldinGuy/K-Means-TS.git" }, "size-limit": [ { "path": "dist/k-means-ts.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/k-means-ts.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.10.1", "@types/node": "^14.14.35", "husky": "^5.2.0", "size-limit": "^4.10.1", "ts-node": "^9.1.1", "tsdx": "^0.14.1", "tslib": "^2.1.0", "typescript": "^4.2.3" }, "keywords": [ "kmeans", "kmeans-clustering", "kmeans-ts", "kmeans-typescript", "data-science", "kmeans-algorithm", "fast-kmeans", "centroid", "vector" ], "bugs": { "url": "https://github.com/GoldinGuy/K-Means-TS/issues" }, "homepage": "https://github.com/GoldinGuy/K-Means-TS#readme" }