forked from ussyalfaks/Grainlify-Stellar-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 824 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
27
28
29
30
31
32
33
{
"name": "@grainlify/contracts-sdk",
"version": "0.1.0",
"description": "TypeScript SDK for Grainlify Soroban smart contracts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"docs": "typedoc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:smoke": "jest src/__tests__/smoke.test.ts"
},
"keywords": [
"stellar",
"soroban",
"smart-contracts",
"grainlify"
],
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@stellar/stellar-sdk": "^11.2.2"
}
}