2019-06-23 03:35:23 -07:00
|
|
|
{
|
2021-03-26 01:06:26 -07:00
|
|
|
"name": "n8n-workflow",
|
2024-01-31 07:08:37 -08:00
|
|
|
"version": "1.27.0",
|
2021-03-26 01:06:26 -07:00
|
|
|
"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"
|
|
|
|
},
|
2022-11-09 06:25:00 -08:00
|
|
|
"main": "dist/index.js",
|
2022-09-23 07:14:28 -07:00
|
|
|
"module": "src/index.ts",
|
2022-11-09 06:25:00 -08:00
|
|
|
"types": "dist/index.d.ts",
|
2022-09-23 07:14:28 -07:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2022-11-09 06:25:00 -08:00
|
|
|
"require": "./dist/index.js",
|
2022-09-23 07:14:28 -07:00
|
|
|
"import": "./src/index.ts",
|
2022-11-09 06:25:00 -08:00
|
|
|
"types": "./dist/index.d.ts"
|
2022-09-23 07:14:28 -07:00
|
|
|
},
|
|
|
|
"./*": "./*"
|
|
|
|
},
|
2021-03-26 01:06:26 -07:00
|
|
|
"scripts": {
|
2022-11-09 08:32:05 -08:00
|
|
|
"clean": "rimraf dist .turbo",
|
|
|
|
"dev": "pnpm watch",
|
2022-11-09 06:25:00 -08:00
|
|
|
"typecheck": "tsc",
|
|
|
|
"build": "tsc -p tsconfig.build.json",
|
2022-11-22 05:11:29 -08:00
|
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
2023-08-22 04:42:05 -07:00
|
|
|
"lint": "eslint . --quiet",
|
|
|
|
"lintfix": "eslint . --fix",
|
2022-11-23 07:20:28 -08:00
|
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
2022-06-17 22:09:37 -07:00
|
|
|
"test": "jest",
|
|
|
|
"test:dev": "jest --watch"
|
2021-03-26 01:06:26 -07:00
|
|
|
},
|
|
|
|
"files": [
|
2022-09-23 07:14:28 -07:00
|
|
|
"dist/**/*"
|
2021-03-26 01:06:26 -07:00
|
|
|
],
|
|
|
|
"devDependencies": {
|
2023-02-15 01:50:16 -08:00
|
|
|
"@types/deep-equal": "^1.0.1",
|
2021-03-26 01:06:26 -07:00
|
|
|
"@types/express": "^4.17.6",
|
2022-03-13 01:34:44 -08:00
|
|
|
"@types/jmespath": "^0.15.0",
|
2023-06-16 07:26:35 -07:00
|
|
|
"@types/lodash": "^4.14.195",
|
2023-03-21 01:50:29 -07:00
|
|
|
"@types/luxon": "^3.2.0",
|
2023-12-21 05:13:02 -08:00
|
|
|
"@types/md5": "^2.3.5",
|
2023-04-11 06:05:56 -07:00
|
|
|
"@types/xml2js": "^0.4.11"
|
2021-03-26 01:06:26 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-11-17 04:49:18 -08:00
|
|
|
"@n8n/tournament": "1.0.2",
|
|
|
|
"@n8n_io/riot-tmpl": "4.0.0",
|
2023-02-09 05:57:45 -08:00
|
|
|
"ast-types": "0.15.2",
|
2023-12-08 02:30:06 -08:00
|
|
|
"callsites": "3.1.0",
|
2023-11-17 04:49:18 -08:00
|
|
|
"deep-equal": "2.2.0",
|
2023-02-09 05:57:45 -08:00
|
|
|
"esprima-next": "5.8.4",
|
2023-11-17 04:49:18 -08:00
|
|
|
"form-data": "4.0.0",
|
|
|
|
"jmespath": "0.16.0",
|
|
|
|
"js-base64": "3.7.2",
|
2023-12-21 05:13:02 -08:00
|
|
|
"jssha": "3.3.1",
|
2023-11-17 04:49:18 -08:00
|
|
|
"lodash": "4.17.21",
|
|
|
|
"luxon": "3.3.0",
|
2023-12-21 05:13:02 -08:00
|
|
|
"md5": "2.3.0",
|
2023-11-17 04:49:18 -08:00
|
|
|
"recast": "0.21.5",
|
|
|
|
"title-case": "3.0.3",
|
|
|
|
"transliteration": "2.3.5",
|
|
|
|
"xml2js": "0.5.0"
|
2021-03-26 01:06:26 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|