-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.21 KB
/
package.json
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
{
"name": "tonion-contracts",
"author": {
"name": "zig balthazar",
"email": "[email protected]"
},
"contributors": [
{
"name": "zig balthazar",
"email": "[email protected]"
},
{
"name": "Kayhan Alizadeh",
"email": "[email protected]"
}
],
"version": "0.0.1",
"description": "Secure Smart Contract library for Tact",
"files": [
"/contracts/traits/**/*.tact",
"!/contracts/mocks/**/*"
],
"scripts": {
"build:all": "rm -rf ./build/* && blueprint build --all",
"test": "jest --verbose",
"format": "npx prettier -w ."
},
"devDependencies": {
"@ton/blueprint": "^0.21.0",
"@ton/core": "^0.56.3",
"@ton/crypto": "^3.2.0",
"@ton/sandbox": "^0.19.0",
"@ton/test-utils": "^0.4.2",
"@ton/ton": "^13.11.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0"
}
}