-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 867 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 867 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
34
35
36
37
38
39
40
41
{
"name": "@dedust/sdk",
"version": "0.8.7",
"description": "SDK for DeDust Protocol v2",
"license": "Apache-2.0",
"homepage": "https://dedust.io",
"author": {
"name": "Scaleton Labs LLC"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"dedust",
"ton"
],
"devDependencies": {
"@ton/core": "^0.52.0",
"@ton/crypto": "^3.2.0",
"@tonconnect/sdk": ">=2.1.2",
"@tsconfig/node18": "^18.2.1",
"@types/node": "^20.5.9",
"axios": "^1.5.0",
"prettier": "^3.0.3",
"ton-crypto": "^3.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@ton/core": ">=0.52.0",
"@tonconnect/sdk": ">=2.1.2",
"axios": ">=1.5.0"
},
"scripts": {
"build": "tsc",
"fmt": "prettier . --write",
"prepublish": "tsc"
}
}