-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.36 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": "soroban-ts-sdk",
"version": "0.1.0",
"description": "TypeScript utility SDK for Stellar and Soroban developers — contract state cache, RPC rate limiter, transaction batcher, Horizon event handler, and WASM upload pipeline.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"stellar",
"soroban",
"typescript",
"sdk",
"stellar-sdk",
"soroban-sdk",
"blockchain",
"web3",
"smart-contracts",
"stellar-network",
"rpc",
"horizon"
],
"repository": {
"type": "git",
"url": "https://github.com/eogenyi23-creator/typescript-backend-utils"
},
"license": "MIT",
"peerDependencies": {
"@stellar/stellar-sdk": ">=12.0.0",
"ioredis": ">=5.0.0"
},
"peerDependenciesMeta": {
"@stellar/stellar-sdk": {
"optional": true
},
"ioredis": {
"optional": true
}
},
"devDependencies": {
"@stellar/stellar-sdk": "13.1.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.24",
"ioredis": "5.4.1",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
}
}