forked from ton-org/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
51
{
"name": "@ton/blueprint",
"version": "0.10.0",
"description": "Framework for development of TON smart contracts",
"main": "dist/index.js",
"bin": {
"blueprint": "./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": {
"@types/inquirer": "^8.2.6",
"@types/node": "^20.2.5",
"@types/qrcode-terminal": "^0.12.0",
"prettier": "^2.8.8",
"ton": "^13.5.0",
"ton-core": "^0.49.1",
"ton-crypto": "^3.2.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"ton": ">=13.4.1",
"ton-core": ">=0.48.0",
"ton-crypto": ">=3.2.0"
},
"dependencies": {
"@orbs-network/ton-access": "^2.3.3",
"@tact-lang/compiler": "^1.1.2",
"@ton-community/func-js": "^0.6.2",
"@tonconnect/sdk": "^2.1.3",
"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"
}
}