forked from circle-Fi/circleFi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@circlefi/sdk",
"version": "0.1.0",
"description": "Read and drive CircleFi rotating savings circles on Stellar",
"license": "Apache-2.0",
"type": "module",
"main": "./src/index.js",
"types": "./index.d.ts",
"exports": {
".": { "types": "./index.d.ts", "default": "./src/index.js" }
},
"files": ["src", "index.d.ts", "README.md"],
"repository": { "type": "git", "url": "git+https://github.com/circle-Fi/circleFi-sdk.git" },
"keywords": ["stellar", "soroban", "rosca", "savings", "esusu", "tanda"],
"scripts": {
"test": "node --test test/",
"test:live": "node test/live.mjs",
"test:e2e": "node test/e2e.mjs"
},
"dependencies": {
"@stellar/stellar-sdk": "^17.0.1"
}
}