@swoft/platform-core-errors
Version:
Standardized error handling for Swoft applications with UX/DX suggestions
55 lines • 1.34 kB
JSON
{
"name": "@swoft/platform-core-errors",
"version": "0.1.0",
"description": "Standardized error handling for Swoft applications with UX/DX suggestions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"pino": "^8.16.1"
},
"devDependencies": {
"pino-pretty": "^10.2.3",
"typescript": "5.1.6",
"vitest": "^3.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.25.0",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.0.0"
},
"keywords": [
"errors",
"clean-architecture",
"domain-driven-design",
"swoft"
],
"author": "Swoft Team",
"license": "MIT",
"tags": [
"layer:core",
"stability:stable",
"deploy:all",
"build:priority-1",
"arch:foundation",
"scope:infrastructure",
"type:library"
],
"scripts": {
"analyze": "size-limit --why",
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"clean:all": "rimraf dist node_modules .turbo",
"dev": "tsc --watch",
"lint": "eslint src --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext ts --fix",
"size": "size-limit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
}
}