forked from ton-org/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
47
48
49
50
{
"name": "@ton/blueprint",
"version": "0.22.0",
"description": "Framework for development of TON smart contracts",
"main": "dist/index.js",
"bin": "./dist/cli/cli.js",
"author": "TonTech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-org/blueprint.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc && cp -r src/templates dist/",
"release": "yarn build && yarn publish --access public",
"format": "prettier --write src"
},
"devDependencies": {
"@ton/core": "^0.56.0",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.11.0",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.2.5",
"@types/qrcode-terminal": "^0.12.0",
"prettier": "^3.0.3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@ton/core": ">=0.56.0",
"@ton/crypto": ">=3.2.0",
"@ton/ton": ">=13.11.0"
},
"dependencies": {
"@orbs-network/ton-access": "^2.3.3",
"@tact-lang/compiler": "^1.4.0",
"@ton-community/func-js": "^0.7.0",
"@tonconnect/sdk": "^2.2.0",
"arg": "^5.0.2",
"chalk": "^4.1.0",
"dotenv": "^16.1.4",
"inquirer": "^8.2.5",
"qrcode-terminal": "^0.12.0",
"ton-x": "^2.1.0",
"ts-node": "^10.9.1"
},
"packageManager": "yarn@4.3.1"
}