-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@ton/blueprint",
"version": "0.44.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/",
"test": "jest src",
"release": "yarn build && yarn publish --access public",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix"
},
"prettier": "@ton/toolchain/prettier",
"devDependencies": {
"@tact-lang/compiler": "^1.6.13",
"@ton-community/func-js": "^0.10.0",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.40.0",
"@ton/tolk-js": "^1.0.0",
"@ton/ton": "^16.2.2",
"@ton/toolchain": "the-ton-tech/toolchain#v1.6.0",
"@types/inquirer": "^8.2.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.2.5",
"@types/qrcode-terminal": "^0.12.0",
"eslint": "^9.28.0",
"globals": "^16.4.0",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@tact-lang/compiler": ">=1.6.5",
"@ton-community/func-js": ">=0.10.0",
"@ton/core": ">=0.63.1",
"@ton/crypto": ">=3.3.0",
"@ton/sandbox": ">=0.40.0",
"@ton/tolk-js": ">=0.13.0",
"@ton/ton": ">=16.2.2"
},
"peerDependenciesMeta": {
"@ton/sandbox": {
"optional": true
}
},
"dependencies": {
"@ton-api/client": "^0.2.0",
"@ton-api/ton-adapter": "^0.2.0",
"@tonconnect/sdk": "^2.2.0",
"arg": "^5.0.2",
"axios": "^1.7.7",
"chalk": "^4.1.0",
"dotenv": "^16.1.4",
"inquirer": "^8.2.5",
"qrcode-terminal": "^0.12.0",
"ton-lite-client": "^3.1.1",
"ts-node": "^10.9.1"
},
"packageManager": "yarn@4.9.2"
}