UNPKG

@cryptodevops/n8n-nodes-bitquery-api

Version:

Nœud n8n pour les APIs Raydium et PumpFun - Accès aux données des pools et tokens Solana sur les DEX Raydium et PumpFun

85 lines 2.24 kB
{ "name": "@cryptodevops/n8n-nodes-bitquery-api", "version": "1.3.0", "description": "Nœud n8n pour les APIs Raydium et PumpFun - Accès aux données des pools et tokens Solana sur les DEX Raydium et PumpFun", "keywords": [ "n8n-community-node-package", "n8n", "bitquery", "blockchain", "api", "raydium", "pumpfun", "solana", "dex", "defi", "pools", "tokens", "liquidity", "trading", "amm", "marketcap" ], "license": "MIT", "homepage": "https://github.com/GitCryptoDevOps/n8n-nodes-bitquery-api", "author": { "name": "GitCryptoDevOps", "email": "contact@gitcryptodevops.com" }, "repository": { "type": "git", "url": "git+https://github.com/GitCryptoDevOps/n8n-nodes-bitquery-api.git" }, "engines": { "node": ">=18.10", "pnpm": ">=9.1" }, "main": "index.js", "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/BitqueryApi.credentials.js" ], "nodes": [ "dist/nodes/BitqueryApi/BitqueryApi.node.js" ] }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.12.7", "@typescript-eslint/parser": "^7.15.0", "eslint": "^8.56.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "gulp": "^4.0.2", "jest": "^29.7.0", "n8n-workflow": "^1.49.0", "prettier": "^3.3.2", "ts-jest": "^29.1.2", "typescript": "^5.5.3" }, "peerDependencies": { "n8n-workflow": "*" }, "dependencies": { "axios": "^1.7.2" }, "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", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest --testPathPattern=unit", "test:integration": "jest --testPathPattern=integration", "test:ci": "jest --coverage --ci --watchAll=false", "test:all": "pnpm lint && pnpm test:coverage && pnpm build", "validate": "pnpm lint && pnpm test && pnpm build" } }