mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
37 lines
918 B
JSON
37 lines
918 B
JSON
{
|
|
"name": "@n8n/backend-common",
|
|
"version": "0.8.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/constants": "workspace:^",
|
|
"@n8n/di": "workspace:^",
|
|
"callsites": "catalog:",
|
|
"n8n-workflow": "workspace:^",
|
|
"picocolors": "catalog:",
|
|
"reflect-metadata": "catalog:",
|
|
"winston": "3.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/typescript-config": "workspace:*"
|
|
}
|
|
}
|