@first-iraqi-bank/sdk 0.0.3-0
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 +1 -0
- package/package.json +69 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# FIB Payment SDK for node
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@first-iraqi-bank/sdk",
|
|
3
|
+
"version": "0.0.3-0",
|
|
4
|
+
"description": "Accept payment and send payout from and to First Iraqi Bank customers with ease!",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"module": "dist/index.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
"./package.json": "./package.json",
|
|
14
|
+
"./payment": {
|
|
15
|
+
"import": {
|
|
16
|
+
"types": "./dist/payment.d.ts",
|
|
17
|
+
"default": "./dist/payment.js"
|
|
18
|
+
},
|
|
19
|
+
"require": {
|
|
20
|
+
"types": "./dist/payment.d.cts",
|
|
21
|
+
"default": "./dist/payment.cjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"./payout": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/payout.d.ts",
|
|
27
|
+
"default": "./dist/payout.js"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./dist/payout.d.cts",
|
|
31
|
+
"default": "./dist/payout.cjs"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"sideEffects": false,
|
|
36
|
+
"scripts": {
|
|
37
|
+
"start": "tsup --watch",
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"lint": "eslint",
|
|
40
|
+
"check:types": "attw --pack ."
|
|
41
|
+
},
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/First-Iraqi-Bank/fib-nodejs-payment-sdk.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": "https://github.com/First-Iraqi-Bank/fib-nodejs-payment-sdk/issues",
|
|
47
|
+
"homepage": "https://github.com/First-Iraqi-Bank/fib-nodejs-payment-sdk#readme",
|
|
48
|
+
"keywords": [
|
|
49
|
+
"api",
|
|
50
|
+
"sdk",
|
|
51
|
+
"payment",
|
|
52
|
+
"first-iraqi-bank"
|
|
53
|
+
],
|
|
54
|
+
"author": "https://github.com/First-Iraqi-Bank",
|
|
55
|
+
"license": "MIT",
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@arethetypeswrong/cli": "^0.15.3",
|
|
58
|
+
"@eslint/js": "^9.5.0",
|
|
59
|
+
"@types/node": "^20.14.8",
|
|
60
|
+
"eslint": "^9.5.0",
|
|
61
|
+
"globals": "^15.6.0",
|
|
62
|
+
"tsup": "^8.1.0",
|
|
63
|
+
"typescript": "^5.5.2",
|
|
64
|
+
"typescript-eslint": "^8.0.0-alpha.30"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
}
|
|
69
|
+
}
|