@ton/blueprint 0.26.0 → 0.28.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +9 -6
package/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.28.0] - 2025-01-17
9
+
10
+ ### Changed
11
+
12
+ - Moved compilers to peer dependencies, allowing end users to use their preferred versions of compilers
13
+
14
+ ## [0.27.0] - 2024-12-18
15
+
16
+ ### Changed
17
+
18
+ - Updated `@ton-community/func-js` dependency to v0.9.0
19
+
8
20
  ## [0.26.0] - 2024-11-26
9
21
 
10
22
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/blueprint",
3
- "version": "0.26.0",
3
+ "version": "0.28.0",
4
4
  "description": "Framework for development of TON smart contracts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "./dist/cli/cli.js",
@@ -19,8 +19,11 @@
19
19
  "format": "prettier --write src"
20
20
  },
21
21
  "devDependencies": {
22
- "@ton/core": "^0.58.1",
22
+ "@tact-lang/compiler": "^1.5.3",
23
+ "@ton-community/func-js": "^0.9.0",
24
+ "@ton/core": "^0.59.0",
23
25
  "@ton/crypto": "^3.3.0",
26
+ "@ton/tolk-js": "^0.6.0",
24
27
  "@ton/ton": "^15.0.0",
25
28
  "@types/inquirer": "^8.2.6",
26
29
  "@types/node": "^20.2.5",
@@ -29,16 +32,16 @@
29
32
  "typescript": "^4.9.5"
30
33
  },
31
34
  "peerDependencies": {
32
- "@ton/core": ">=0.58.1",
35
+ "@tact-lang/compiler": ">=1.5.3",
36
+ "@ton-community/func-js": ">=0.9.0",
37
+ "@ton/core": ">=0.59.0",
33
38
  "@ton/crypto": ">=3.3.0",
39
+ "@ton/tolk-js": ">=0.6.0",
34
40
  "@ton/ton": ">=15.0.0"
35
41
  },
36
42
  "dependencies": {
37
- "@tact-lang/compiler": "^1.4.0",
38
43
  "@ton-api/client": "^0.2.0",
39
44
  "@ton-api/ton-adapter": "^0.2.0",
40
- "@ton-community/func-js": "^0.7.0",
41
- "@ton/tolk-js": "^0.6.0",
42
45
  "@tonconnect/sdk": "^2.2.0",
43
46
  "arg": "^5.0.2",
44
47
  "axios": "^1.7.7",