mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
6bdfaf8f5b
Co-authored-by: RicardoE105 <RicardoE105@users.noreply.github.com>
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "n8n-core",
|
|
"version": "1.43.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-copy-icons": "./bin/copy-icons",
|
|
"n8n-generate-known": "./bin/generate-known",
|
|
"n8n-generate-translations": "./bin/generate-translations",
|
|
"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/express": "^4.17.21",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/mime-types": "^2.1.0",
|
|
"@types/uuid": "^8.3.2",
|
|
"@types/xml2js": "^0.4.14"
|
|
},
|
|
"peerDependencies": {
|
|
"n8n-nodes-base": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/client-oauth2": "workspace:*",
|
|
"aws4": "1.11.0",
|
|
"axios": "1.6.7",
|
|
"concat-stream": "2.0.0",
|
|
"cron": "1.7.2",
|
|
"fast-glob": "3.2.12",
|
|
"file-type": "16.5.4",
|
|
"form-data": "4.0.0",
|
|
"lodash": "4.17.21",
|
|
"luxon": "^3.4.4",
|
|
"mime-types": "2.1.35",
|
|
"n8n-workflow": "workspace:*",
|
|
"oauth-1.0a": "2.2.6",
|
|
"p-cancelable": "2.1.1",
|
|
"pretty-bytes": "5.6.0",
|
|
"qs": "6.11.0",
|
|
"typedi": "0.10.0",
|
|
"uuid": "8.3.2",
|
|
"xml2js": "0.6.2"
|
|
}
|
|
}
|