forked from Vero-protocol/vero-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "@vero-protocol/sdk",
"version": "0.1.0",
"description": "Shared Stellar client library for the Vero Protocol — typed contract client, nonce management, RPC failover, and wallet adapters.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Vero-protocol/vero-sdk.git"
},
"homepage": "https://github.com/Vero-protocol/vero-sdk#readme",
"bugs": {
"url": "https://github.com/Vero-protocol/vero-sdk/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"stellar",
"soroban",
"vero-protocol",
"blockchain",
"sdk"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^30.0.0",
"ts-jest": "^29.2.0",
"typescript": "^5.6.0"
}
}