@ton/blueprint 0.44.0 → 0.45.0-dev.20260331160328.da8e511
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +69 -69
package/package.json
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@ton/blueprint",
|
|
3
|
+
"version": "0.45.0-dev.20260331160328.da8e511",
|
|
4
|
+
"description": "Framework for development of TON smart contracts",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": "./dist/cli/cli.js",
|
|
7
|
+
"author": "TonTech",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/ton-org/blueprint.git"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/**/*"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "rm -rf dist && tsc && cp -r src/templates dist/",
|
|
18
|
+
"test": "jest src",
|
|
19
|
+
"release": "yarn build && yarn publish --access public",
|
|
20
|
+
"lint": "eslint . --max-warnings 0",
|
|
21
|
+
"lint:fix": "eslint . --max-warnings 0 --fix"
|
|
22
|
+
},
|
|
23
|
+
"prettier": "@ton/toolchain/prettier",
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@tact-lang/compiler": "^1.6.13",
|
|
26
|
+
"@ton-community/func-js": "^0.10.0",
|
|
27
|
+
"@ton/core": "^0.63.1",
|
|
28
|
+
"@ton/crypto": "^3.3.0",
|
|
29
|
+
"@ton/sandbox": "^0.40.0",
|
|
30
|
+
"@ton/tolk-js": "^1.0.0",
|
|
31
|
+
"@ton/ton": "^16.2.3",
|
|
32
|
+
"@ton/toolchain": "the-ton-tech/toolchain#v1.6.0",
|
|
33
|
+
"@types/inquirer": "^8.2.6",
|
|
34
|
+
"@types/jest": "^30.0.0",
|
|
35
|
+
"@types/node": "^20.2.5",
|
|
36
|
+
"@types/qrcode-terminal": "^0.12.0",
|
|
37
|
+
"eslint": "^9.28.0",
|
|
38
|
+
"globals": "^16.4.0",
|
|
39
|
+
"jest": "^30.0.5",
|
|
40
|
+
"ts-jest": "^29.4.1",
|
|
41
|
+
"typescript": "^5.8.3"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@tact-lang/compiler": ">=1.6.5",
|
|
45
|
+
"@ton-community/func-js": ">=0.10.0",
|
|
46
|
+
"@ton/core": ">=0.63.1",
|
|
47
|
+
"@ton/crypto": ">=3.3.0",
|
|
48
|
+
"@ton/sandbox": ">=0.40.0",
|
|
49
|
+
"@ton/tolk-js": ">=0.13.0",
|
|
50
|
+
"@ton/ton": ">=16.2.3"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"@ton/sandbox": {
|
|
54
|
+
"optional": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@ton-api/client": "^0.2.0",
|
|
59
|
+
"@ton-api/ton-adapter": "^0.2.0",
|
|
60
|
+
"@tonconnect/sdk": "^2.2.0",
|
|
61
|
+
"arg": "^5.0.2",
|
|
62
|
+
"axios": "1.14.0",
|
|
63
|
+
"chalk": "^4.1.0",
|
|
64
|
+
"dotenv": "^16.1.4",
|
|
65
|
+
"inquirer": "^8.2.5",
|
|
66
|
+
"qrcode-terminal": "^0.12.0",
|
|
67
|
+
"ton-lite-client": "^3.1.1",
|
|
68
|
+
"ts-node": "^10.9.1"
|
|
69
|
+
},
|
|
70
|
+
"packageManager": "yarn@4.9.2"
|
|
71
71
|
}
|