@puq/is
Version:
A set of utility functions to check the value is undefined, null, or empty
90 lines • 2.14 kB
JSON
{
"name": "@puq/is",
"license": "MIT",
"version": "0.6.20",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"description": "A set of utility functions to check the value is undefined, null, or empty",
"author": {
"email": "robert.brightline@gmail.com",
"name": "Robert Brightline",
"url": "https://rbrightline.github.io"
},
"keywords": [
"puq",
"is"
],
"repository": {
"directory": "libs/is",
"url": "https://github.com/rbrightline/puq/tree/main",
"type": "github"
},
"homepage": "https://rbrightline.github.io/puq/is",
"bugs": {
"email": "robert.brightline@gmail.com",
"url": "https://rbrightline.github.io"
},
"categories": [
"Other"
],
"contributors": [
{
"email": "robert.brightline@gmail.com",
"name": "Robert Brightline",
"url": "https://rbrightline.github.io"
}
],
"funding": [
"https://cash.app/$puqlib"
],
"icon": "https://raw.githubusercontent.com/rbrightline/puq/refs/heads/main/libs/is/favicon.png",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"nx": {
"sourceRoot": "libs/is/src",
"targets": {
"build": {
"executor": "@nx/js:swc",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "libs/is/dist",
"main": "libs/is/src/index.ts",
"tsConfig": "libs/is/tsconfig.lib.json",
"skipTypeCheck": false,
"stripLeadingPaths": true
},
"dependsOn": [
"lint"
]
},
"doc": {
"command": "cd libs/is && npx compodoc -d ../../public/is -p tsconfig.lib.json -n is"
}
}
},
"peerDependencies": {
"@puq/type": "^0.6.20",
"@puq/error": "^0.6.20"
},
"dependencies": {
"@swc/helpers": "^0.5.15"
}
}