Initial commit: n8n Strike API node
- Add Strike API credentials configuration - Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates) - Add comprehensive operation descriptions for all resources - Include CLAUDE.MD documentation - Set up build configuration with TypeScript, ESLint, and Prettier 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
54
package.json
Normal file
54
package.json
Normal file
@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "n8n-nodes-strike",
|
||||
"version": "0.1.0",
|
||||
"description": "n8n node for Strike API - Bitcoin payments and Lightning Network",
|
||||
"keywords": [
|
||||
"n8n-community-node-package",
|
||||
"strike",
|
||||
"bitcoin",
|
||||
"lightning",
|
||||
"payments"
|
||||
],
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/yourusername/n8n-nodes-strike",
|
||||
"author": {
|
||||
"name": "Your Name"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/yourusername/n8n-nodes-strike.git"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"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": "npm run build"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"n8n": {
|
||||
"n8nNodesApiVersion": 1,
|
||||
"credentials": [
|
||||
"dist/credentials/StrikeApi.credentials.js"
|
||||
],
|
||||
"nodes": [
|
||||
"dist/nodes/Strike/Strike.node.js"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.0",
|
||||
"@typescript-eslint/parser": "^6.0.0",
|
||||
"eslint": "^8.56.0",
|
||||
"gulp": "^4.0.2",
|
||||
"n8n-workflow": "^1.22.0",
|
||||
"prettier": "^3.1.0",
|
||||
"typescript": "^5.3.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"n8n-workflow": "*"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user