n8n/packages/@n8n/backend-network/package.json
n8n-assistant[bot] 662a23c202
🚀 Release 2.32.0 (#34600)
Co-authored-by: n8n-release-helper[bot] <265227495+n8n-release-helper[bot]@users.noreply.github.com>
2026-07-21 07:14:52 +00:00

92 lines
2.4 KiB
JSON

{
"name": "@n8n/backend-network",
"version": "1.6.0",
"scripts": {
"clean": "rimraf dist .turbo",
"dev": "pnpm watch",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"build:unchecked": "tsc -p tsconfig.build.json --noCheck",
"format": "biome format --write .",
"format:check": "biome ci .",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --fix",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:unit": "vitest run",
"test:dev": "vitest --silent=false"
},
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./src/index.ts",
"require": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./src/testing.ts",
"require": "./dist/testing.js"
},
"./transport": {
"types": "./dist/transport.d.ts",
"import": "./src/transport.ts",
"require": "./dist/transport.js"
},
"./proxy": {
"types": "./dist/proxy/index.d.ts",
"import": "./src/proxy/index.ts",
"require": "./dist/proxy/index.js"
}
},
"typesVersions": {
"*": {
"testing": [
"dist/testing.d.ts"
],
"transport": [
"dist/transport.d.ts"
],
"proxy": [
"dist/proxy/index.d.ts"
]
}
},
"files": [
"dist/**/*"
],
"dependencies": {
"@n8n/backend-common": "workspace:*",
"@n8n/config": "workspace:*",
"@n8n/constants": "workspace:*",
"@n8n/di": "workspace:*",
"@n8n/utils": "workspace:*",
"axios": "catalog:",
"cache-manager": "catalog:",
"form-data": "catalog:",
"http-proxy-agent": "catalog:",
"https-proxy-agent": "catalog:",
"iconv-lite": "catalog:",
"n8n-workflow": "workspace:*",
"proxy-from-env": "catalog:",
"qs": "catalog:",
"reflect-metadata": "catalog:",
"undici": "catalog:undici-v7",
"zod": "catalog:"
},
"devDependencies": {
"@n8n/typescript-config": "workspace:*",
"@n8n/vitest-config": "workspace:*",
"@types/proxy-from-env": "catalog:",
"@types/qs": "catalog:",
"@vitest/coverage-v8": "catalog:",
"nock": "catalog:",
"typescript": "catalog:typescript",
"vitest": "catalog:",
"vitest-mock-extended": "catalog:"
},
"license": "LicenseRef-n8n-sustainable-use"
}