Files
n8n-enterprise-unlocked/packages/@n8n/db/package.json

39 lines
969 B
JSON

{
"name": "@n8n/db",
"version": "0.2.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": {
"@n8n/config": "workspace:^",
"@n8n/di": "workspace:^",
"@n8n/permissions": "workspace:^",
"@n8n/typeorm": "catalog:",
"class-validator": "0.14.0",
"n8n-core": "workspace:^",
"n8n-workflow": "workspace:^",
"nanoid": "catalog:",
"reflect-metadata": "catalog:",
"xss": "catalog:"
},
"devDependencies": {
"@n8n/typescript-config": "workspace:*"
}
}