n8n-nodes-tushare
Version:
n8n custom node for Tushare
68 lines • 1.68 kB
JSON
{
"name": "n8n-nodes-tushare",
"version": "0.1.12",
"description": "n8n custom node for Tushare",
"keywords": [
"n8n-community-node-package",
"tushare",
"financial-data",
"stock-data",
"china-market"
],
"license": "MIT",
"homepage": "https://github.com/crazyyanchao/n8n-nodes-tushare",
"author": {
"name": "Tony.Ma",
"email": "yanchaoma@foxmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/crazyyanchao/n8n-nodes-tushare.git"
},
"bugs": {
"url": "https://github.com/crazyyanchao/n8n-nodes-tushare/issues"
},
"engines": {
"node": ">=22.16"
},
"main": "index.js",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/TushareApi.credentials.js"
],
"nodes": [
"dist/nodes/Tushare/Tushare.node.js",
"dist/nodes/ToolTushare/ToolTushare.node.js"
]
},
"devDependencies": {
"@types/node": "^24.2.1",
"@typescript-eslint/parser": "~8.36",
"eslint": "^8.57.1",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.1",
"n8n-workflow": "1.103.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"n8n-workflow": "*",
"@langchain/community": "*",
"@langchain/core": "*",
"@langchain/openai": "*",
"openai": "*",
"zod": "*"
},
"scripts": {
"build": "npx rimraf dist && 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"
}
}