nodela-sdk 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://github.com/Devkrea8-Technologies/nodela-js-sdk/actions/workflows/ci.yml)
|
|
4
4
|
[](https://www.npmjs.com/package/nodela-sdk)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://nodejs.org/)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
|
|
9
9
|
The official JavaScript/TypeScript SDK for the [Nodela](https://nodela.com) stablecoin payments API. Accept crypto payments globally with support for 60+ fiat currencies, automatic currency conversion, and seamless checkout experiences.
|
|
@@ -56,7 +56,7 @@ The official JavaScript/TypeScript SDK for the [Nodela](https://nodela.com) stab
|
|
|
56
56
|
|
|
57
57
|
## Requirements
|
|
58
58
|
|
|
59
|
-
- **Node.js** >=
|
|
59
|
+
- **Node.js** >= 18.18.0
|
|
60
60
|
- A Nodela API key (obtain one from the [Nodela Dashboard](https://nodela.com))
|
|
61
61
|
|
|
62
62
|
API keys follow the format:
|
|
@@ -641,7 +641,7 @@ nodela-js-sdk/
|
|
|
641
641
|
│ └── publish.yml # Automated npm publishing via changesets
|
|
642
642
|
├── tsconfig.json # TypeScript configuration
|
|
643
643
|
├── jest.config.js # Jest test configuration
|
|
644
|
-
├── .
|
|
644
|
+
├── eslint.config.mts # ESLint flat config
|
|
645
645
|
└── .prettierrc # Prettier formatting rules
|
|
646
646
|
```
|
|
647
647
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodela-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "SDK wrapper for Nodela dev api's to aide in implementation of Nodela on javascript/NodeJs servers, by abstracting away the api complexity and providing easy to use interfaces.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://github.com/Devkrea8-Technologies/nodela-js-sdk#readme",
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
47
|
+
"node": ">=18.18.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"axios": "^1.13.5"
|