n8n-nodes-refresh-token-auth
Version:
n8n community node with automatic refresh token support
91 lines (90 loc) • 2.52 kB
JSON
{
"name": "n8n-nodes-refresh-token-auth",
"version": "1.0.45",
"description": "n8n community node with automatic refresh token support",
"keywords": [
"n8n-community-node-package",
"n8n",
"refresh-token",
"authentication",
"bearer-token"
],
"license": "MIT",
"homepage": "https://github.com/rctphone/n8n-nodes-refresh-token-auth",
"author": {
"name": "rctphone",
"email": "rctphone@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/rctphone/n8n-nodes-refresh-token-auth.git"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "pnpm@9.1.4",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc && gulp build:icons",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch '**/*.integration.test.ts' --testPathIgnorePatterns=''",
"n8n:start": "N8N_SECURE_COOKIE=false N8N_CUSTOM_EXTENSIONS=$PWD npx n8n start",
"n8n:debug": "N8N_SECURE_COOKIE=false N8N_CUSTOM_EXTENSIONS=$PWD node --inspect node_modules/n8n/bin/n8n start"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.svg",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts",
"!dist/**/*.test.js.map",
"!dist/**/*.tsbuildinfo",
"dist/package.json",
"LICENSE",
"README.md"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/RefreshTokenAuth.credentials.js"
],
"nodes": [
"dist/nodes/DebugRefreshToken/DebugRefreshToken.node.js",
"dist/nodes/HttpRequestWithRefreshToken/HttpRequestWithRefreshToken.node.js"
]
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.18.12",
"@typescript-eslint/parser": "~8.46.2",
"axios": "^1.13.2",
"dotenv": "^16.4.7",
"eslint": "8",
"eslint-plugin-n8n-nodes-base": "^1.16.4",
"gulp": "^5.0.0",
"https-proxy-agent": "^7.0.6",
"jest": "^29.7.0",
"n8n": "^1.121.2",
"n8n-core": "^1.117.1",
"n8n-workflow": "^1.115.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.5",
"typescript": "^5.8.2"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}