UNPKG

ts-object-keys

Version:

Fix for Object.keys, which normally just returns an array of strings, which is not good when you care about strong typing

83 lines (82 loc) 1.8 kB
{ "version": "1.0.4", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "homepage": "https://github.com/funtal/object-keys#readme", "description": "Fix for Object.keys, which normally just returns an array of strings, which is not good when you care about strong typing", "repository": { "type": "git", "url": "git+https://github.com/funtal/object-keys.git" }, "bugs": { "url": "https://github.com/funtal/object-keys/issues" }, "files": [ "dist", "src" ], "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" }, "name": "ts-object-keys", "author": "playerony", "module": "dist/object-keys.esm.js", "size-limit": [ { "path": "dist/object-keys.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/object-keys.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^7.0.8", "husky": "4.3.6", "size-limit": "^7.0.8", "tsdx": "^0.14.1", "tslib": "^2.4.0", "typescript": "^4.7.3" }, "keywords": [ "keys", "Object", "funtal", "object", "playerony", "type-safe", "functional", "Typescript", "typescript", "Object.keys", "object-keys", "type-safe-keys", "object-keys-ts", "ts-object-keys", "type-safe-object-keys", "type-safe-object-property-keys" ] }