is-kris
Version:
A utility package to detect variations of the name Chris/Kris in strings
63 lines (62 loc) • 1.49 kB
JSON
{
"name": "is-kris",
"version": "1.0.0",
"description": "A utility package to detect variations of the name Chris/Kris in strings",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "mkdir -p dist && bun build index.ts --outfile dist/index.js --target node --format esm && cp types.d.ts dist/index.d.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build && bun run test",
"dev": "bun run test:watch"
},
"keywords": [
"chris",
"kris",
"christopher",
"kristopher",
"name",
"detection",
"regex",
"utility",
"typescript",
"bun"
],
"author": "Rostislav Melkumyan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RostiMelk/is-kris.git"
},
"bugs": {
"url": "https://github.com/RostiMelk/is-kris/issues"
},
"homepage": "https://github.com/RostiMelk/is-kris#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}