n8n-nodes-grok
Version:
n8n node for Grok API integration
59 lines (58 loc) • 1.63 kB
JSON
{
"name": "n8n-nodes-grok",
"version": "0.0.20",
"description": "n8n node for Grok API integration",
"keywords": [
"n8n-community-node-package",
"n8n",
"grok",
"ai"
],
"license": "MIT",
"homepage": "https://x.com/jvkassi",
"author": {
"name": "Matthew Sabia",
"url": "https://x.com/jvkassi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jvkassi/n8n-nodes-grok.git"
},
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist && echo 'Cleaned dist directory'",
"build": "echo 'Starting build...' && npx tsc --project tsconfig.json && echo 'TypeScript compilation complete' && mkdir -p dist/nodes/Grok && echo 'Created directories' && cp nodes/Grok/grok.svg dist/nodes/Grok/ && echo 'Copied SVG' && ls -la dist/nodes/Grok/",
"lint": "echo ok",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"prepublishOnly": "npm run build && npm run lint",
"test": "jest"
},
"files": [
"dist",
"README.md"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/GrokApi.credentials.js"
],
"nodes": [
"dist/nodes/Grok/Grok.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/parser": "~5.45",
"eslint": "^8.0.1",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"typescript": "~4.8.4",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.48.0"
}
}