@nodesuite/schemas
Version:
A collection of common constants and validation schemas.
73 lines • 2.26 kB
JSON
{
"$schema": "https://json.schemastore.org/package",
"name": "@nodesuite/schemas",
"version": "0.3.32",
"description": "A collection of common constants and validation schemas.",
"keywords": [
"constants",
"country-codes",
"node-env",
"nodesuite",
"validation",
"zod"
],
"homepage": "https://github.com/nodesuite/nodesuite",
"bugs": "https://github.com/nodesuite/nodesuite/issues",
"repository": "https://github.com/nodesuite/nodesuite",
"license": "ISC",
"author": "@nodesuite",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"dependencies": {
"tslib": "^2.5.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@rushstack/eslint-config": "^3.2.0",
"@rushstack/heft": "^0.49.7",
"@rushstack/heft-jest-plugin": "^0.5.4",
"@types/heft-jest": "^1.0.3",
"@types/node": "^18.13.0",
"@typescript-eslint/parser": "^5.51.0",
"barrelsby": "^2.5.1",
"dpdm": "^3.12.0",
"eslint": "8.34.0",
"npm-check-updates": "^15.3.4",
"npm-run-all": "^4.1.5",
"sort-package-json": "^2.4.1",
"tsup": "^6.6.2",
"typescript": "4.9.5",
"@nodesuite/eslint-config": "0.3.32",
"@nodesuite/node-rig": "0.3.32"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"barrels": "run-s barrels:*",
"barrels:clean": "find src/ -type f -name 'index.ts' -exec rm {} \\;",
"barrels:generate": "barrelsby -c node_modules/@nodesuite/node-rig/profiles/default/barrelsby.json -D",
"barrels:lint": "eslint src/**/index.ts --fix",
"build": "heft build --clean",
"build:prod": "tsup-node --config=node_modules/@nodesuite/node-rig/profiles/default/tsup.config.js",
"circular": "dpdm --ext ts --circular --output coverage/circular.json src",
"clean": "run-p clean:*",
"clean:heft": "heft clean --clear-cache",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts --fix",
"lint:sort": "sort-package-json",
"typecheck": "tsc --noEmit",
"upgrade": "ncu -u --packageFile package.json"
}
}