-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 975 Bytes
/
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
{
"name": "ton-contracts",
"version": "3.1.0",
"main": "dist/index.js",
"repository": "https://github.com/tonwhales/ton-contracts.git",
"author": "Steve Korshakov <steve@korshakov.com>",
"license": "MIT",
"files": [
"dist/**/*",
"contracts/**/*"
],
"scripts": {
"test": "jest --runInBand",
"build": "./build.sh",
"release": "yarn build && yarn test && yarn publish"
},
"peerDependencies": {
"ton": ">=9.1.0",
"ton-crypto": ">=1.6.0"
},
"dependencies": {
"@openland/patterns": "^0.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"babel-jest": "^27.2.4",
"jest": "^27.2.4",
"ton": "^11.14.0",
"ton-crypto": "^3.2.0",
"ton-compiler": "0.9.0",
"ton-contract-executor": "^0.3.4",
"typescript": "^4.4.3"
}
}