@ic-reactor/cli 0.6.0 → 0.7.1
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 +1 -1
- package/package.json +2 -2
- package/schema.json +0 -21
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ic-reactor/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI tool to generate shadcn-style React hooks for ICP canisters",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@icp-sdk/core": "^5.0.0",
|
|
34
34
|
"commander": "^14.0.3",
|
|
35
35
|
"picocolors": "^1.1.1",
|
|
36
|
-
"@ic-reactor/codegen": "0.
|
|
36
|
+
"@ic-reactor/codegen": "0.7.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^25.2.3",
|
package/schema.json
CHANGED
|
@@ -18,27 +18,6 @@
|
|
|
18
18
|
"description": "Default import path for the client manager (relative from generated files)",
|
|
19
19
|
"default": "../../clients"
|
|
20
20
|
},
|
|
21
|
-
"reactor": {
|
|
22
|
-
"type": "object",
|
|
23
|
-
"description": "Control whether generated default hooks use raw Reactor or DisplayReactor",
|
|
24
|
-
"properties": {
|
|
25
|
-
"defaultMode": {
|
|
26
|
-
"type": "string",
|
|
27
|
-
"enum": ["raw", "display"],
|
|
28
|
-
"description": "Global default reactor mode for generated hooks",
|
|
29
|
-
"default": "display"
|
|
30
|
-
},
|
|
31
|
-
"canisters": {
|
|
32
|
-
"type": "object",
|
|
33
|
-
"description": "Per-canister reactor mode overrides keyed by canister name",
|
|
34
|
-
"additionalProperties": {
|
|
35
|
-
"type": "string",
|
|
36
|
-
"enum": ["raw", "display"]
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"additionalProperties": false
|
|
41
|
-
},
|
|
42
21
|
"canisters": {
|
|
43
22
|
"type": "object",
|
|
44
23
|
"description": "Canister configurations",
|