forked from soroswap/stellar-workshop
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 811 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 811 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
{
"name": "stellar-workshop",
"version": "1.0.0",
"description": "Educational workshops for Stellar blockchain and DeFi protocols",
"main": "dist/main.js",
"author": "Palta Labs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/paltalabs/stellar-workshop.git"
},
"scripts": {
"soroswap": "ts-node src/soroswap.ts",
"defindex": "ts-node src/defindex.ts",
"soroswap-direct": "ts-node src/soroswap-typescript.ts",
"defindex-direct": "ts-node src/defindex-typescript.ts"
},
"dependencies": {
"@defindex/sdk": "^0.1.1",
"@soroswap/sdk": "^0.3.8",
"@stellar/stellar-sdk": "^14.3.2",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^20.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}