-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@paystack/paystack-sdk",
"version": "1.2.1-beta.2",
"description": "Paystack API wrapper for Node",
"author": "Paystack <[email protected]> (https://paystack.com/docs)",
"keywords": [
"paystack",
"payment",
"cards",
"charge",
"recurring payment",
"subscriptions",
"transfers",
"single transfers",
"bulk transfers",
"send money",
"multi splits"
],
"homepage": "https://github.com/PaystackOSS/paystack-node",
"bugs": "https://github.com/PaystackOSS/paystack-node/issues",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": true,
"sourcemap": false,
"clean": true
},
"scripts": {
"build": "npm run clean && tsup --format esm,cjs --dts",
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.esm.json && tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.types.json"
},
"devDependencies": {
"@types/node": "^15.0.3",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
}
}