{ "name": "@voxpelli/typed-utils", "version": "4.0.0", "description": "My personal (type-enabled) utils / helpers", "homepage": "http://github.com/voxpelli/typed-utils", "repository": { "type": "git", "url": "git://github.com/voxpelli/typed-utils.git" }, "keywords": [], "author": "Pelle Wessman (http://kodfabrik.se/)", "license": "MIT", "engines": { "node": "^20.11.0 || >=22.0.0", "typescript": ">=5.8" }, "type": "module", "exports": "./index.js", "types": "index.d.ts", "files": [ "index.js", "index.d.ts", "index.d.ts.map", "lib/**/*.js", "lib/**/*.d.ts", "lib/**/*.d.ts.map" ], "scripts": { "build:0": "run-s clean", "build:1-declaration": "tsc -p declaration.tsconfig.json", "build": "run-s build:*", "check:0": "run-s clean", "check:1:installed-check": "installed-check --engine-check --version-check -i tstyche -i @voxpelli/tstyche-reporters -i typescript", "check:1:knip": "knip", "check:1:lint": "eslint", "check:1:tsc": "tsc", "check:1:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*' --ignore-files 'typetests/*'", "check:1": "run-p check:1:*", "check:2-type-tests": "run-s build && tstyche --reporters ./node_modules/@voxpelli/tstyche-reporters/lib/tstyche-mocha-reporter.js,summary && run-s clean", "check": "run-s check:*", "clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')", "clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')", "clean": "run-p clean:*", "prepack": "run-s build", "prepare": "husky", "test:tstyche": "run-s build && tstyche --target \"$(jq -r '.engines.typescript' package.json)\" --reporters dot,summary && run-s clean", "test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'", "test-ci": "run-s test:mocha", "test": "run-s check test:*" }, "devDependencies": { "@types/chai": "^4.3.20", "@types/mocha": "^10.0.10", "@voxpelli/eslint-config": "^23.0.0", "@voxpelli/tsconfig": "^16.1.0", "@voxpelli/tstyche-reporters": "^1.1.0", "c8": "^11.0.0", "chai": "^4.5.0", "eslint": "^9.39.3", "husky": "^9.1.7", "installed-check": "^9.3.0", "knip": "^5.85.0", "mocha": "^11.7.5", "npm-run-all2": "^8.0.4", "tstyche": "^6.2.0", "type-coverage": "^2.29.7", "typescript": "~5.9.3", "validate-conventional-commit": "^1.0.4" } }