- 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>
37 lines
751 B
JSON
37 lines
751 B
JSON
{
|
|
"name": "js-base64",
|
|
"version": "3.7.2",
|
|
"description": "Yet another Base64 transcoder in pure-JS",
|
|
"main": "base64.js",
|
|
"module": "base64.mjs",
|
|
"types": "base64.d.ts",
|
|
"files": [
|
|
"base64.js",
|
|
"base64.mjs",
|
|
"base64.d.ts"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./base64.mjs",
|
|
"require": "./base64.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"test": "make clean && make test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.0.26",
|
|
"esm": "^3.2.25",
|
|
"mocha": "^8.4.0",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"repository": "git+https://github.com/dankogai/js-base64.git",
|
|
"keywords": [
|
|
"base64",
|
|
"binary"
|
|
],
|
|
"author": "Dan Kogai",
|
|
"license": "BSD-3-Clause"
|
|
}
|