UNPKG

@js-utility/string

Version:

A lightweight and powerful collection of string utility functions for Node.js - trimming, casing, formatting, and more.

70 lines (69 loc) 1.57 kB
{ "name": "@js-utility/string", "version": "1.0.1", "description": "A lightweight and powerful collection of string utility functions for Node.js - trimming, casing, formatting, and more.", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "files": [ "dist" ], "scripts": { "clean": "rm -rf dist", "build": "jest --passWithNoTests && tsup --clean", "dev": "tsup --watch", "test": "jest", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/AIWebBuilder/string-utils-js.git" }, "keywords": [ "string", "string-utils", "string-utilities", "text", "text-utils", "string-functions", "formatting", "trim", "case", "camelCase", "kebabCase", "snakeCase", "capitalize", "split", "sanitize", "text-processing", "nodejs", "javascript", "utility", "helper", "null safe" ], "author": "Pradip Sabhadiya", "license": "MIT", "type": "commonjs", "bugs": { "url": "https://github.com/AIWebBuilder/string-utils-js/issues" }, "homepage": "https://github.com/AIWebBuilder/string-utils-js#readme", "devDependencies": { "@types/jest": "^29.5.14", "jest": "^29.7.0", "ts-jest": "^29.3.2", "tsup": "^8.4.0", "typescript": "^5.8.3" }, "dependencies": { "crypto-js": "^4.2.0", "pluralize": "^8.0.0" } }