n8n-nodes-execute-code
Version:
A custom n8n node that executes programming code submissions using Judge0 API, ideal for coding contests or automated grading.
64 lines (63 loc) • 1.66 kB
JSON
{
"name": "n8n-nodes-execute-code",
"version": "0.1.4",
"description": "A custom n8n node that executes programming code submissions using Judge0 API, ideal for coding contests or automated grading.",
"keywords": [
"n8n",
"n8n-community-node-package",
"judge0",
"coding",
"programming",
"code execution",
"automated grading"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Tran Tuan Anh",
"email": "tuananh161224@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tuananhit1612/n8n-nodes-execute-code.git"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "pnpm@9.1.4",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "pnpm build && pnpm lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ExecuteCodeApi.credentials.js"
],
"nodes": [
"dist/nodes/ExecuteCode/ExecuteCode.node.js"
]
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}