2025-07-03 11:32:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "@n8n/errors",
|
2026-04-13 13:53:22 +00:00
|
|
|
"version": "0.7.0",
|
2025-07-03 11:32:57 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rimraf dist .turbo",
|
|
|
|
|
"dev": "pnpm watch",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"build": "tsc -p tsconfig.build.json",
|
|
|
|
|
"format": "biome format --write .",
|
|
|
|
|
"format:check": "biome ci .",
|
|
|
|
|
"lint": "eslint . --quiet",
|
2025-07-28 09:07:28 +00:00
|
|
|
"lint:fix": "eslint . --fix",
|
2025-07-03 11:32:57 +00:00
|
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
2025-07-28 09:07:28 +00:00
|
|
|
"test": "echo \"WARNING: no test specified\" && exit 0",
|
|
|
|
|
"test:dev": "echo \"WARNING: no test specified\" && exit 0"
|
2025-07-03 11:32:57 +00:00
|
|
|
},
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"module": "src/index.ts",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/**/*"
|
|
|
|
|
],
|
|
|
|
|
"devDependencies": {
|
2025-07-28 15:48:56 +00:00
|
|
|
"@n8n/typescript-config": "workspace:*",
|
2026-01-30 09:49:50 +00:00
|
|
|
"@sentry/node": "catalog:sentry"
|
2025-07-28 15:48:56 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"callsites": "catalog:"
|
2025-07-03 11:32:57 +00:00
|
|
|
}
|
2025-07-07 15:13:34 +00:00
|
|
|
}
|