refactor(core): Set up @n8n/db package (#14904)

This commit is contained in:
Iván Ovejero
2025-04-28 09:08:07 +02:00
committed by GitHub
parent e8ca5e75a9
commit 9e270cf700
11 changed files with 96 additions and 12 deletions

View File

@@ -0,0 +1,29 @@
{
"name": "@n8n/db",
"version": "0.1.0",
"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 .",
"lintfix": "eslint . --fix",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "jest",
"test:dev": "jest --watch"
},
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {
"reflect-metadata": "catalog:"
},
"devDependencies": {
"@n8n/typescript-config": "workspace:*"
}
}