-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "bloc-nodejs",
"version": "0.2.0",
"description": "Nodejs SDK wrapper for Bloc API written with Typescript support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/bloc.esm.js",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16"
},
"author": "Emmanuel Raymond",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peoray/bloc-nodejs.git"
},
"bugs": {
"url": "https://github.com/peoray/bloc-nodejs/issues"
},
"homepage": "https://github.com/peoray/bloc-nodejs#readme",
"keywords": [
"bloc",
"fintech",
"accounts",
"transactions",
"payment",
"cards",
"credit",
"savings",
"investment",
"sdk",
"typescript",
"nodejs",
"javascript"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"dev": "npx tsx ./examples/payment-links/create-payment-link.ts",
"prepare": "tsdx build",
"prepublishOnly": "pnpm build",
"preversion": "pnpm build"
},
"devDependencies": {
"@types/node": "^20.11.5",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.5"
}
}