@orchard9ai/error-handling
Version:
Federated error handling package with go-core-http-toolkit format support and logging integration
66 lines • 1.67 kB
JSON
{
"name": "@orchard9ai/error-handling",
"version": "0.1.0",
"description": "Federated error handling package with go-core-http-toolkit format support and logging integration",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md"
],
"dependencies": {
"@orchard9ai/types": "0.1.0",
"@orchard9ai/logging": "0.1.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"peerDependencies": {
"@orchard9ai/logging": "^0.1.0",
"@orchard9ai/types": "^0.1.0",
"react": ">=16.8.0"
},
"keywords": [
"error-handling",
"logging",
"api-errors",
"typescript",
"orchard9"
],
"repository": {
"type": "git",
"url": "https://github.com/orchard9ai/frontend-packages.git",
"directory": "packages/error-handling"
},
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf dist"
}
}