{ "name": "n8n-workflow", "version": "0.131.1", "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/express": "^4.17.6", "@types/jmespath": "^0.15.0", "@types/lodash.get": "^4.4.6", "@types/lodash.isequal": "^4.5.6", "@types/lodash.merge": "^4.6.6", "@types/lodash.set": "^4.3.6", "@types/luxon": "^2.0.9", "@types/xml2js": "^0.4.3" }, "dependencies": { "@n8n_io/riot-tmpl": "^1.0.1", "jmespath": "^0.16.0", "lodash.get": "^4.4.2", "lodash.isequal": "^4.5.0", "lodash.merge": "^4.6.2", "lodash.set": "^4.3.2", "luxon": "~2.3.0", "xml2js": "^0.4.23" } }