@junobuild/cli 0.8.4 → 0.9.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.
- package/dist/index.js +720 -655
- package/package.json +26 -26
- package/templates/eject/rust/src/satellite/Cargo.toml +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junobuild/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "The Juno command-line interface",
|
|
5
5
|
"author": "David Dal Busco (https://daviddalbusco.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,44 +23,44 @@
|
|
|
23
23
|
"prepublishOnly": "./scripts/prepublish.sh"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@dfinity/agent": "^2.
|
|
27
|
-
"@dfinity/auth-client": "^2.
|
|
28
|
-
"@dfinity/candid": "^2.
|
|
29
|
-
"@dfinity/ic-management": "^
|
|
30
|
-
"@dfinity/identity": "^2.
|
|
31
|
-
"@dfinity/principal": "^2.
|
|
26
|
+
"@dfinity/agent": "^3.2.4",
|
|
27
|
+
"@dfinity/auth-client": "^3.2.4",
|
|
28
|
+
"@dfinity/candid": "^3.2.4",
|
|
29
|
+
"@dfinity/ic-management": "^7.0.2",
|
|
30
|
+
"@dfinity/identity": "^3.2.4",
|
|
31
|
+
"@dfinity/principal": "^3.2.4",
|
|
32
32
|
"@dfinity/zod-schemas": "^1.1.0",
|
|
33
|
-
"@junobuild/admin": "^2.
|
|
34
|
-
"@junobuild/cdn": "^1.
|
|
35
|
-
"@junobuild/cli-tools": "^0.
|
|
33
|
+
"@junobuild/admin": "^2.2.0",
|
|
34
|
+
"@junobuild/cdn": "^1.3.0",
|
|
35
|
+
"@junobuild/cli-tools": "^0.7.0",
|
|
36
36
|
"@junobuild/config": "^2.1.0",
|
|
37
|
-
"@junobuild/config-loader": "^0.4.
|
|
38
|
-
"@junobuild/core": "^
|
|
39
|
-
"@junobuild/did-tools": "^0.2
|
|
40
|
-
"@junobuild/ic-client": "^
|
|
41
|
-
"@junobuild/storage": "^1.
|
|
42
|
-
"@junobuild/utils": "^0.
|
|
37
|
+
"@junobuild/config-loader": "^0.4.4",
|
|
38
|
+
"@junobuild/core": "^2.1.0",
|
|
39
|
+
"@junobuild/did-tools": "^0.3.2",
|
|
40
|
+
"@junobuild/ic-client": "^3.1.0",
|
|
41
|
+
"@junobuild/storage": "^1.3.0",
|
|
42
|
+
"@junobuild/utils": "^0.2.0",
|
|
43
43
|
"chokidar": "^4.0.3",
|
|
44
44
|
"conf": "^14.0.0",
|
|
45
45
|
"open": "^10.2.0",
|
|
46
46
|
"ora": "^8.2.0",
|
|
47
|
-
"portfinder": "^1.0.
|
|
47
|
+
"portfinder": "^1.0.38",
|
|
48
48
|
"prompts": "^2.4.2",
|
|
49
49
|
"semver": "^7.7.2",
|
|
50
|
-
"terminal-link": "^
|
|
50
|
+
"terminal-link": "^5.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@eslint/eslintrc": "^3.3.1",
|
|
54
|
-
"@eslint/js": "^9.
|
|
55
|
-
"@junobuild/functions": "^0.
|
|
56
|
-
"@types/node": "^
|
|
54
|
+
"@eslint/js": "^9.35.0",
|
|
55
|
+
"@junobuild/functions": "^0.3.0",
|
|
56
|
+
"@types/node": "^24.4.0",
|
|
57
57
|
"@types/prompts": "^2.4.9",
|
|
58
|
-
"@types/semver": "^7.7.
|
|
59
|
-
"esbuild": "^0.25.
|
|
60
|
-
"eslint": "^9.
|
|
61
|
-
"eslint-config-love": "^
|
|
58
|
+
"@types/semver": "^7.7.1",
|
|
59
|
+
"esbuild": "^0.25.9",
|
|
60
|
+
"eslint": "^9.35.0",
|
|
61
|
+
"eslint-config-love": "^125.0.0",
|
|
62
62
|
"eslint-config-prettier": "^10.1.8",
|
|
63
|
-
"globals": "^16.
|
|
63
|
+
"globals": "^16.4.0",
|
|
64
64
|
"prettier": "^3.6.2",
|
|
65
65
|
"prettier-plugin-organize-imports": "^4.2.0",
|
|
66
66
|
"typescript": "^5.8.3"
|
|
@@ -7,12 +7,12 @@ edition = "2021"
|
|
|
7
7
|
crate-type = ["cdylib"]
|
|
8
8
|
|
|
9
9
|
[dependencies]
|
|
10
|
-
candid = "0.10.
|
|
10
|
+
candid = "0.10.17"
|
|
11
11
|
ic-cdk = "0.18.5"
|
|
12
12
|
ic-cdk-macros = "0.18.5"
|
|
13
13
|
serde = "1.0.217"
|
|
14
14
|
serde_cbor = "0.11.2"
|
|
15
|
-
junobuild-satellite = "0.2.
|
|
15
|
+
junobuild-satellite = "0.2.5"
|
|
16
16
|
junobuild-macros = "0.1.1"
|
|
17
|
-
junobuild-utils = "0.1.
|
|
17
|
+
junobuild-utils = "0.1.3"
|
|
18
18
|
|