verror-0
Version:
VError without dependencies on top of nodejs standart library
45 lines (44 loc) • 1.14 kB
JSON
{
"name": "verror-0",
"description": "VError without dependencies on top of nodejs standart library",
"repository": {
"url": "git+https://github.com/ghost-vk/verror-0.git",
"type": "git"
},
"version": "1.2.1",
"license": "MIT",
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build": "rm -rf lib && yarn compile && node scripts/prepare-package-json",
"test": "node --import tsx --test tests/*.spec.ts",
"prettier": "prettier --write ."
},
"devDependencies": {
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"./package.json": "./package.json"
},
"keywords": [
"error",
"errors",
"err",
"exception",
"exceptions",
"custom",
"verror"
]
}