-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.27 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.27 KB
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
58
59
60
61
62
63
{
"name": "@sorosave/sdk",
"version": "0.1.0",
"description": "TypeScript SDK for SoroSave — Decentralized Group Savings Protocol on Soroban",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/"
},
"bin": {
"sorosave": "./dist/cli.js"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"commander": "^11.0.0"
},
"peerDependencies": {
"react": ">=17.0.0",
"@stellar/stellar-sdk": "^13.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"react": "^18.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/big14way/sorosave.git",
"directory": "sdk"
},
"keywords": [
"soroban",
"stellar",
"defi",
"savings",
"ajo",
"susu",
"chit-fund",
"react",
"hooks"
]
}