max-mask
Version:
Simple masking solution for any frontend as well as nodejs. Provides composable for Vue3
53 lines (52 loc) • 1.38 kB
JSON
{
"name": "max-mask",
"version": "0.0.5",
"description": "Simple masking solution for any frontend as well as nodejs. Provides composable for Vue3",
"keywords": [
"string-masking",
"input-mask",
"text-formatting",
"frontend",
"nodejs",
"data-validation",
"vue3",
"composable",
"typescript",
"pattern-matching",
"form-validation",
"user-input",
"privacy",
"security",
"data-sanitization",
"utility",
"es6",
"commonjs"
],
"main": "dist/cjs/index.js",
"exports": {
".": [
{
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/cjs/index.js"
],
"./cjs": "./dist/cjs/index.js"
},
"types": "dist/cjs/index.d.ts",
"repository": "https://github.com/kazak1377/mask",
"author": "Maksym <max@kozachenko.io>",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json"
},
"devDependencies": {
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
}
}