forked from ZyntariHQ/Invoisio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 806 Bytes
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
{
"name": "@invoisio/soroban-client",
"version": "1.0.0",
"description": "Soroban invoice-payment contract client helper library for Invoisio",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "src"],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"example:record": "ts-node -r dotenv/config examples/record-payment.ts",
"example:query": "ts-node -r dotenv/config examples/query-payment.ts",
"example:config": "ts-node -r dotenv/config examples/query-config.ts"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.6.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"dotenv": "^16.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}