mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
bf74f09d69
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "n8n-workflow",
|
|
"version": "1.8.0",
|
|
"description": "Workflow base code 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.js",
|
|
"module": "src/index.ts",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./src/index.ts",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest",
|
|
"test:dev": "jest --watch"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/crypto-js": "^4.1.1",
|
|
"@types/deep-equal": "^1.0.1",
|
|
"@types/express": "^4.17.6",
|
|
"@types/jmespath": "^0.15.0",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/xml2js": "^0.4.11"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/tournament": "^1.0.2",
|
|
"@n8n_io/riot-tmpl": "^4.0.0",
|
|
"ast-types": "0.15.2",
|
|
"crypto-js": "^4.1.1",
|
|
"deep-equal": "^2.2.0",
|
|
"esprima-next": "5.8.4",
|
|
"form-data": "^4.0.0",
|
|
"jmespath": "^0.16.0",
|
|
"js-base64": "^3.7.2",
|
|
"lodash": "^4.17.21",
|
|
"luxon": "^3.3.0",
|
|
"recast": "^0.21.5",
|
|
"title-case": "^3.0.3",
|
|
"transliteration": "^2.3.5",
|
|
"xml2js": "^0.5.0"
|
|
}
|
|
}
|