UNPKG

@future-widget-lab/record-set

Version:

A dedicated data structure for in-memory record collections, offering fluent, immutable APIs for MongoDB-like querying, sorting, and transformation.

90 lines 1.9 kB
{ "name": "@future-widget-lab/record-set", "version": "0.1.1", "description": "A dedicated data structure for in-memory record collections, offering fluent, immutable APIs for MongoDB-like querying, sorting, and transformation.", "license": "MIT", "author": "Carlos Lobo", "main": "dist/index.js", "module": "dist/record-set.esm.js", "typings": "dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/future-widget-lab/record-set.git" }, "files": [ "dist", "src" ], "husky": { "hooks": { "pre-commit": "dts lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "jest": { "testEnvironment": "node" }, "engines": { "node": ">=12" }, "size-limit": [ { "path": "dist/record-set.cjs.production.min.js", "limit": "25 KB" }, { "path": "dist/record-set.esm.js", "limit": "25 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^11.2.0", "@tsconfig/recommended": "^1.0.8", "@types/jest": "^29.5.14", "dts-cli": "^2.0.5", "husky": "^9.1.7", "size-limit": "^11.2.0", "tslib": "^2.8.1", "typescript": "^5.8.3" }, "dependencies": { "mingo": "^6.6.1", "sift": "^17.1.3" }, "keywords": [ "data-structure", "recordset", "in-memory", "collection", "immutable", "fluent", "query", "querying", "filter", "filtering", "sorting", "transformation", "mongodb", "mongodb-like", "mongo-syntax", "functional", "typescript", "frontend", "client-side", "state-management", "dataset" ], "scripts": { "analyze": "size-limit --why", "build": "dts build", "lint": "dts lint", "size": "size-limit", "start": "dts watch", "test": "dts test" } }