mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
b6de910cbe
This change ensures that things like `encryptionKey` and `instanceId` are always available directly where they are needed, instead of passing them around throughout the code.
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "n8n-core",
|
|
"version": "1.12.0",
|
|
"description": "Core functionality of n8n",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"main": "dist/index",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"n8n-generate-known": "./bin/generate-known",
|
|
"n8n-generate-ui-types": "./bin/generate-ui-types"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"typecheck": "tsc",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "pnpm watch",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin"
|
|
],
|
|
"devDependencies": {
|
|
"@types/aws4": "^1.5.1",
|
|
"@types/concat-stream": "^2.0.0",
|
|
"@types/cron": "~1.7.1",
|
|
"@types/crypto-js": "^4.1.3",
|
|
"@types/express": "^4.17.6",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/mime-types": "^2.1.0",
|
|
"@types/request-promise-native": "~1.0.15",
|
|
"@types/uuid": "^8.3.2",
|
|
"@types/xml2js": "^0.4.11"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-nodes-base": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/client-oauth2": "workspace:*",
|
|
"aws4": "^1.8.0",
|
|
"axios": "^0.21.1",
|
|
"concat-stream": "^2.0.0",
|
|
"cron": "~1.7.2",
|
|
"crypto-js": "^4.1.1",
|
|
"fast-glob": "^3.2.5",
|
|
"file-type": "^16.5.4",
|
|
"flatted": "^3.2.4",
|
|
"form-data": "^4.0.0",
|
|
"lodash": "^4.17.21",
|
|
"mime-types": "^2.1.27",
|
|
"n8n-workflow": "workspace:*",
|
|
"oauth-1.0a": "^2.2.6",
|
|
"p-cancelable": "^2.0.0",
|
|
"pretty-bytes": "^5.6.0",
|
|
"qs": "^6.10.1",
|
|
"typedi": "^0.10.0",
|
|
"uuid": "^8.3.2",
|
|
"xml2js": "^0.5.0"
|
|
}
|
|
}
|