mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "n8n-core",
|
|
"version": "0.143.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",
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"typecheck": "tsc",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "pnpm watch",
|
|
"format": "prettier **/**.ts --write",
|
|
"lint": "eslint .",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc --watch",
|
|
"test": "jest"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@types/cron": "~1.7.1",
|
|
"@types/crypto-js": "^4.0.1",
|
|
"@types/express": "^4.17.6",
|
|
"@types/lodash.get": "^4.4.6",
|
|
"@types/mime-types": "^2.1.0",
|
|
"@types/request-promise-native": "~1.0.15",
|
|
"@types/uuid": "^8.3.2"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"client-oauth2": "^4.2.5",
|
|
"cron": "~1.7.2",
|
|
"crypto-js": "~4.1.1",
|
|
"file-type": "^16.5.4",
|
|
"flatted": "^3.2.4",
|
|
"form-data": "^4.0.0",
|
|
"lodash.get": "^4.4.2",
|
|
"mime-types": "^2.1.27",
|
|
"n8n-workflow": "~0.125.0",
|
|
"oauth-1.0a": "^2.2.6",
|
|
"p-cancelable": "^2.0.0",
|
|
"qs": "^6.10.1",
|
|
"request": "^2.88.2",
|
|
"request-promise-native": "^1.0.7",
|
|
"uuid": "^8.3.2"
|
|
}
|
|
}
|