@cartridge/controller 0.5.9 → 0.7.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 (102) hide show
  1. package/.turbo/turbo-build$colon$deps.log +53 -115
  2. package/.turbo/turbo-build.log +54 -116
  3. package/dist/controller.cjs +860 -0
  4. package/dist/controller.cjs.map +1 -0
  5. package/dist/controller.d.cts +33 -0
  6. package/dist/controller.d.ts +4 -4
  7. package/dist/controller.js +254 -170
  8. package/dist/controller.js.map +1 -1
  9. package/dist/index.cjs +2200 -0
  10. package/dist/index.cjs.map +1 -0
  11. package/dist/index.d.cts +17 -0
  12. package/dist/index.d.ts +12 -6
  13. package/dist/index.js +296 -7666
  14. package/dist/index.js.map +1 -1
  15. package/dist/lookup.cjs +59 -0
  16. package/dist/lookup.cjs.map +1 -0
  17. package/dist/lookup.d.cts +4 -0
  18. package/dist/lookup.js +7 -7
  19. package/dist/lookup.js.map +1 -1
  20. package/dist/node/index.cjs +726 -0
  21. package/dist/node/index.cjs.map +1 -0
  22. package/dist/node/index.d.cts +56 -0
  23. package/dist/node/index.d.ts +56 -0
  24. package/dist/{telegram/provider.js → node/index.js} +521 -216
  25. package/dist/node/index.js.map +1 -0
  26. package/dist/policies-DD1aPjQ4.d.cts +21 -0
  27. package/dist/policies-DD1aPjQ4.d.ts +21 -0
  28. package/dist/{types-CVnDQVqD.d.ts → provider-ap1C1ypF.d.cts} +27 -10
  29. package/dist/provider-ap1C1ypF.d.ts +201 -0
  30. package/dist/session/{provider.js → index.cjs} +342 -168
  31. package/dist/session/index.cjs.map +1 -0
  32. package/dist/session/index.d.cts +38 -0
  33. package/dist/session/index.d.ts +37 -7
  34. package/dist/session/index.js +309 -161
  35. package/dist/session/index.js.map +1 -1
  36. package/package.json +49 -16
  37. package/src/controller.ts +44 -15
  38. package/src/iframe/base.ts +1 -11
  39. package/src/mutex.ts +22 -0
  40. package/src/node/account.ts +72 -0
  41. package/src/node/backend.ts +159 -0
  42. package/src/node/index.ts +4 -0
  43. package/src/node/provider.ts +178 -0
  44. package/src/node/server.ts +89 -0
  45. package/src/policies.ts +49 -0
  46. package/src/provider.ts +33 -2
  47. package/src/session/account.ts +2 -1
  48. package/src/session/provider.ts +123 -10
  49. package/src/telegram/provider.ts +3 -2
  50. package/src/types.ts +3 -6
  51. package/src/utils.ts +4 -1
  52. package/tsconfig.json +3 -3
  53. package/dist/__tests__/parseChainId.test.d.ts +0 -2
  54. package/dist/__tests__/parseChainId.test.js +0 -89
  55. package/dist/__tests__/parseChainId.test.js.map +0 -1
  56. package/dist/account.d.ts +0 -38
  57. package/dist/account.js +0 -106
  58. package/dist/account.js.map +0 -1
  59. package/dist/constants.d.ts +0 -5
  60. package/dist/constants.js +0 -10
  61. package/dist/constants.js.map +0 -1
  62. package/dist/errors.d.ts +0 -5
  63. package/dist/errors.js +0 -11
  64. package/dist/errors.js.map +0 -1
  65. package/dist/icon.d.ts +0 -3
  66. package/dist/icon.js +0 -6
  67. package/dist/icon.js.map +0 -1
  68. package/dist/iframe/base.d.ts +0 -5
  69. package/dist/iframe/base.js +0 -122
  70. package/dist/iframe/base.js.map +0 -1
  71. package/dist/iframe/index.d.ts +0 -5
  72. package/dist/iframe/index.js +0 -184
  73. package/dist/iframe/index.js.map +0 -1
  74. package/dist/iframe/keychain.d.ts +0 -5
  75. package/dist/iframe/keychain.js +0 -143
  76. package/dist/iframe/keychain.js.map +0 -1
  77. package/dist/iframe/profile.d.ts +0 -5
  78. package/dist/iframe/profile.js +0 -163
  79. package/dist/iframe/profile.js.map +0 -1
  80. package/dist/index.d-BbTUPBeO.d.ts +0 -68
  81. package/dist/provider.d.ts +0 -22
  82. package/dist/provider.js +0 -198
  83. package/dist/provider.js.map +0 -1
  84. package/dist/session/account.d.ts +0 -37
  85. package/dist/session/account.js +0 -92
  86. package/dist/session/account.js.map +0 -1
  87. package/dist/session/backend.d.ts +0 -60
  88. package/dist/session/backend.js +0 -39
  89. package/dist/session/backend.js.map +0 -1
  90. package/dist/session/provider.d.ts +0 -30
  91. package/dist/session/provider.js.map +0 -1
  92. package/dist/telegram/backend.d.ts +0 -33
  93. package/dist/telegram/backend.js +0 -40
  94. package/dist/telegram/backend.js.map +0 -1
  95. package/dist/telegram/provider.d.ts +0 -26
  96. package/dist/telegram/provider.js.map +0 -1
  97. package/dist/types.d.ts +0 -5
  98. package/dist/types.js +0 -13
  99. package/dist/types.js.map +0 -1
  100. package/dist/utils.d.ts +0 -18
  101. package/dist/utils.js +0 -139
  102. package/dist/utils.js.map +0 -1
@@ -1,123 +1,61 @@
1
1
 
2
- > @cartridge/controller@0.5.9 build:deps /home/runner/work/controller/controller/packages/controller
3
- > tsup --dts-resolve
2
+ > @cartridge/controller@0.7.0 build:deps /home/runner/work/controller/controller/packages/controller
3
+ > tsup
4
4
 
5
- CLI Building entry: src/account.ts, src/constants.ts, src/controller.ts, src/errors.ts, src/icon.ts, src/index.ts, src/lookup.ts, src/provider.ts, src/types.ts, src/utils.ts, src/__tests__/parseChainId.test.ts, src/iframe/base.ts, src/iframe/index.ts, src/iframe/keychain.ts, src/iframe/profile.ts, src/session/account.ts, src/session/backend.ts, src/session/index.ts, src/session/provider.ts, src/telegram/backend.ts, src/telegram/provider.ts
5
+ CLI Building entry: src/controller.ts, src/index.ts, src/lookup.ts, src/node/index.ts, src/session/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.3.5
8
8
  CLI Using tsup config: /home/runner/work/controller/controller/packages/controller/package.json
9
- CLI Target: es2020
9
+ CLI Target: esnext
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
- ESM dist/account.js 2.83 KB
13
- ESM dist/__tests__/parseChainId.test.js 2.92 KB
14
- ESM dist/iframe/base.js 3.64 KB
15
- ESM dist/session/account.js 2.28 KB
16
- ESM dist/telegram/backend.js 1.27 KB
17
- ESM dist/constants.js 247.00 B
18
- ESM dist/controller.js 36.66 KB
19
- ESM dist/errors.js 271.00 B
20
- ESM dist/icon.js 15.15 KB
21
- ESM dist/index.js 260.76 KB
22
- ESM dist/lookup.js 1.59 KB
23
- ESM dist/provider.js 20.61 KB
24
- ESM dist/types.js 437.00 B
25
- ESM dist/utils.js 3.53 KB
26
- ESM dist/iframe/index.js 5.16 KB
27
- ESM dist/iframe/keychain.js 4.12 KB
28
- ESM dist/iframe/profile.js 4.69 KB
29
- ESM dist/session/backend.js 1.18 KB
30
- ESM dist/session/index.js 26.63 KB
31
- ESM dist/session/provider.js 26.03 KB
32
- ESM dist/telegram/provider.js 25.58 KB
33
- ESM dist/account.js.map 9.72 KB
34
- ESM dist/__tests__/parseChainId.test.js.map 8.47 KB
35
- ESM dist/iframe/base.js.map 7.08 KB
36
- ESM dist/session/account.js.map 12.10 KB
37
- ESM dist/telegram/backend.js.map 1.98 KB
38
- ESM dist/constants.js.map 315.00 B
39
- ESM dist/controller.js.map 61.03 KB
40
- ESM dist/icon.js.map 15.20 KB
41
- ESM dist/errors.js.map 385.00 B
42
- ESM dist/index.js.map 394.34 KB
43
- ESM dist/lookup.js.map 3.49 KB
44
- ESM dist/provider.js.map 25.59 KB
45
- ESM dist/utils.js.map 7.10 KB
46
- ESM dist/types.js.map 4.75 KB
47
- ESM dist/iframe/index.js.map 10.47 KB
48
- ESM dist/iframe/keychain.js.map 8.27 KB
49
- ESM dist/iframe/profile.js.map 9.47 KB
50
- ESM dist/session/backend.js.map 2.88 KB
51
- ESM dist/session/index.js.map 44.69 KB
52
- ESM dist/telegram/provider.js.map 38.84 KB
53
- ESM dist/session/provider.js.map 39.69 KB
54
- ESM ⚡️ Build success in 118ms
12
+ CJS Build start
13
+ "addAddressPadding", "CallData", "getChecksumAddress", "hash", "typedData" and "TypedDataRevision" are imported from external module "starknet" but never used in "dist/controller.cjs".
14
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/node/index.cjs".
15
+ Entry module "dist/node/index.cjs" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
16
+ "addAddressPadding" and "CallData" are imported from external module "starknet" but never used in "dist/index.cjs".
17
+ Entry module "dist/index.cjs" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
55
18
  DTS Build start
56
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
57
-
58
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
59
-
60
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
61
-
62
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
63
-
64
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
65
-
66
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
67
-
68
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
69
-
70
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
71
-
72
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
73
-
74
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
75
-
76
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
77
-
78
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
79
-
80
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
81
-
82
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
83
-
84
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
85
-
86
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
87
-
88
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
89
-
90
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
91
-
92
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
93
-
94
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
95
-
96
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
97
-
98
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
99
-
100
- DTS ⚡️ Build success in 9903ms
101
- DTS dist/index.d.ts 1.28 KB
102
- DTS dist/__tests__/parseChainId.test.d.ts 13.00 B
103
- DTS dist/session/index.d.ts 737.00 B
104
- DTS dist/account.d.ts 1.64 KB
105
- DTS dist/constants.d.ts 215.00 B
106
- DTS dist/icon.d.ts 15.11 KB
107
- DTS dist/controller.d.ts 1.36 KB
108
- DTS dist/lookup.d.ts 216.00 B
109
- DTS dist/utils.d.ts 806.00 B
110
- DTS dist/session/account.d.ts 1.83 KB
111
- DTS dist/errors.d.ts 100.00 B
112
- DTS dist/session/provider.d.ts 1.10 KB
113
- DTS dist/telegram/backend.d.ts 1.28 KB
114
- DTS dist/session/backend.d.ts 2.29 KB
115
- DTS dist/telegram/provider.d.ts 975.00 B
116
- DTS dist/provider.d.ts 897.00 B
117
- DTS dist/iframe/base.d.ts 184.00 B
118
- DTS dist/iframe/keychain.d.ts 172.00 B
119
- DTS dist/iframe/profile.d.ts 198.00 B
120
- DTS dist/iframe/index.d.ts 252.00 B
121
- DTS dist/types.d.ts 603.00 B
122
- DTS dist/index.d-BbTUPBeO.d.ts 2.15 KB
123
- DTS dist/types-CVnDQVqD.d.ts 6.21 KB
19
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/session/index.cjs".
20
+ Entry module "dist/session/index.cjs" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
21
+ "addAddressPadding", "CallData", "getChecksumAddress", "hash", "typedData" and "TypedDataRevision" are imported from external module "starknet" but never used in "dist/controller.js".
22
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/node/index.js".
23
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/session/index.js".
24
+ "addAddressPadding" and "CallData" are imported from external module "starknet" but never used in "dist/index.js".
25
+ CJS dist/controller.cjs 38.67 KB
26
+ CJS dist/node/index.cjs 34.25 KB
27
+ CJS dist/session/index.cjs 30.88 KB
28
+ CJS dist/lookup.cjs 1.70 KB
29
+ CJS dist/index.cjs 79.32 KB
30
+ CJS dist/controller.cjs.map 73.37 KB
31
+ CJS dist/node/index.cjs.map 65.13 KB
32
+ CJS dist/session/index.cjs.map 57.67 KB
33
+ CJS dist/lookup.cjs.map 4.00 KB
34
+ CJS dist/index.cjs.map 143.79 KB
35
+ CJS ⚡️ Build success in 901ms
36
+ ESM dist/controller.js 38.64 KB
37
+ ESM dist/lookup.js 1.63 KB
38
+ ESM dist/node/index.js 33.46 KB
39
+ ESM dist/session/index.js 30.75 KB
40
+ ESM dist/index.js 78.98 KB
41
+ ESM dist/controller.js.map 73.28 KB
42
+ ESM dist/lookup.js.map 4.00 KB
43
+ ESM dist/node/index.js.map 64.93 KB
44
+ ESM dist/session/index.js.map 57.52 KB
45
+ ESM dist/index.js.map 143.64 KB
46
+ ESM ⚡️ Build success in 904ms
47
+ DTS ⚡️ Build success in 6768ms
48
+ DTS dist/index.d.ts 1.20 KB
49
+ DTS dist/controller.d.ts 1.34 KB
50
+ DTS dist/lookup.d.ts 216.00 B
51
+ DTS dist/node/index.d.ts 2.35 KB
52
+ DTS dist/session/index.d.ts 1.90 KB
53
+ DTS dist/policies-DD1aPjQ4.d.ts 565.00 B
54
+ DTS dist/provider-ap1C1ypF.d.ts 6.79 KB
55
+ DTS dist/index.d.cts 1.21 KB
56
+ DTS dist/controller.d.cts 1.34 KB
57
+ DTS dist/lookup.d.cts 216.00 B
58
+ DTS dist/node/index.d.cts 2.36 KB
59
+ DTS dist/session/index.d.cts 1.90 KB
60
+ DTS dist/policies-DD1aPjQ4.d.cts 565.00 B
61
+ DTS dist/provider-ap1C1ypF.d.cts 6.79 KB
@@ -1,127 +1,65 @@
1
1
 
2
- > @cartridge/controller@0.5.9 build /home/runner/work/controller/controller/packages/controller
2
+ > @cartridge/controller@0.7.0 build /home/runner/work/controller/controller/packages/controller
3
3
  > pnpm build:deps
4
4
 
5
5
 
6
- > @cartridge/controller@0.5.9 build:deps /home/runner/work/controller/controller/packages/controller
7
- > tsup --dts-resolve
6
+ > @cartridge/controller@0.7.0 build:deps /home/runner/work/controller/controller/packages/controller
7
+ > tsup
8
8
 
9
- CLI Building entry: src/account.ts, src/constants.ts, src/controller.ts, src/errors.ts, src/icon.ts, src/index.ts, src/lookup.ts, src/provider.ts, src/types.ts, src/utils.ts, src/__tests__/parseChainId.test.ts, src/iframe/base.ts, src/iframe/index.ts, src/iframe/keychain.ts, src/iframe/profile.ts, src/session/account.ts, src/session/backend.ts, src/session/index.ts, src/session/provider.ts, src/telegram/backend.ts, src/telegram/provider.ts
9
+ CLI Building entry: src/controller.ts, src/index.ts, src/lookup.ts, src/node/index.ts, src/session/index.ts
10
10
  CLI Using tsconfig: tsconfig.json
11
11
  CLI tsup v8.3.5
12
12
  CLI Using tsup config: /home/runner/work/controller/controller/packages/controller/package.json
13
- CLI Target: es2020
13
+ CLI Target: esnext
14
14
  CLI Cleaning output folder
15
15
  ESM Build start
16
- ESM dist/account.js 2.83 KB
17
- ESM dist/constants.js 247.00 B
18
- ESM dist/controller.js 36.66 KB
19
- ESM dist/errors.js 271.00 B
20
- ESM dist/icon.js 15.15 KB
21
- ESM dist/index.js 260.76 KB
22
- ESM dist/lookup.js 1.59 KB
23
- ESM dist/provider.js 20.61 KB
24
- ESM dist/types.js 437.00 B
25
- ESM dist/utils.js 3.53 KB
26
- ESM dist/__tests__/parseChainId.test.js 2.92 KB
27
- ESM dist/iframe/index.js 5.16 KB
28
- ESM dist/iframe/base.js 3.64 KB
29
- ESM dist/iframe/keychain.js 4.12 KB
30
- ESM dist/session/account.js 2.28 KB
31
- ESM dist/iframe/profile.js 4.69 KB
32
- ESM dist/session/backend.js 1.18 KB
33
- ESM dist/session/provider.js 26.03 KB
34
- ESM dist/session/index.js 26.63 KB
35
- ESM dist/telegram/provider.js 25.58 KB
36
- ESM dist/telegram/backend.js 1.27 KB
37
- ESM dist/account.js.map 9.72 KB
38
- ESM dist/constants.js.map 315.00 B
39
- ESM dist/controller.js.map 61.03 KB
40
- ESM dist/errors.js.map 385.00 B
41
- ESM dist/icon.js.map 15.20 KB
42
- ESM dist/index.js.map 394.34 KB
43
- ESM dist/lookup.js.map 3.49 KB
44
- ESM dist/provider.js.map 25.59 KB
45
- ESM dist/types.js.map 4.75 KB
46
- ESM dist/utils.js.map 7.10 KB
47
- ESM dist/__tests__/parseChainId.test.js.map 8.47 KB
48
- ESM dist/iframe/index.js.map 10.47 KB
49
- ESM dist/iframe/base.js.map 7.08 KB
50
- ESM dist/iframe/keychain.js.map 8.27 KB
51
- ESM dist/session/account.js.map 12.10 KB
52
- ESM dist/iframe/profile.js.map 9.47 KB
53
- ESM dist/session/backend.js.map 2.88 KB
54
- ESM dist/session/provider.js.map 39.69 KB
55
- ESM dist/session/index.js.map 44.69 KB
56
- ESM dist/telegram/provider.js.map 38.84 KB
57
- ESM dist/telegram/backend.js.map 1.98 KB
58
- ESM ⚡️ Build success in 162ms
16
+ CJS Build start
17
+ "addAddressPadding", "CallData", "getChecksumAddress", "hash", "typedData" and "TypedDataRevision" are imported from external module "starknet" but never used in "dist/controller.cjs".
18
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/session/index.cjs".
19
+ Entry module "dist/session/index.cjs" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
20
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/node/index.cjs".
21
+ Entry module "dist/node/index.cjs" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
22
+ "addAddressPadding" and "CallData" are imported from external module "starknet" but never used in "dist/index.cjs".
23
+ Entry module "dist/index.cjs" is using named and default exports together. Consumers of your bundle will have to use `chunk.default` to access the default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
24
+ "addAddressPadding", "CallData", "getChecksumAddress", "hash", "typedData" and "TypedDataRevision" are imported from external module "starknet" but never used in "dist/controller.js".
25
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/node/index.js".
26
+ "addAddressPadding" and "CallData" are imported from external module "starknet" but never used in "dist/index.js".
59
27
  DTS Build start
60
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
61
-
62
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
63
-
64
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
65
-
66
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
67
-
68
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
69
-
70
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
71
-
72
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
73
-
74
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
75
-
76
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
77
-
78
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
79
-
80
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
81
-
82
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
83
-
84
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
85
-
86
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
87
-
88
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
89
-
90
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
91
-
92
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
93
-
94
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
95
-
96
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
97
-
98
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
99
-
100
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
101
-
102
- ../tsconfig/base.json(6,25): error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.
103
-
104
- DTS ⚡️ Build success in 9945ms
105
- DTS dist/index.d.ts 1.28 KB
106
- DTS dist/__tests__/parseChainId.test.d.ts 13.00 B
107
- DTS dist/session/index.d.ts 737.00 B
108
- DTS dist/account.d.ts 1.64 KB
109
- DTS dist/constants.d.ts 215.00 B
110
- DTS dist/icon.d.ts 15.11 KB
111
- DTS dist/controller.d.ts 1.36 KB
112
- DTS dist/lookup.d.ts 216.00 B
113
- DTS dist/utils.d.ts 806.00 B
114
- DTS dist/session/account.d.ts 1.83 KB
115
- DTS dist/errors.d.ts 100.00 B
116
- DTS dist/session/provider.d.ts 1.10 KB
117
- DTS dist/telegram/backend.d.ts 1.28 KB
118
- DTS dist/session/backend.d.ts 2.29 KB
119
- DTS dist/telegram/provider.d.ts 975.00 B
120
- DTS dist/provider.d.ts 897.00 B
121
- DTS dist/iframe/base.d.ts 184.00 B
122
- DTS dist/iframe/keychain.d.ts 172.00 B
123
- DTS dist/iframe/profile.d.ts 198.00 B
124
- DTS dist/iframe/index.d.ts 252.00 B
125
- DTS dist/types.d.ts 603.00 B
126
- DTS dist/index.d-BbTUPBeO.d.ts 2.15 KB
127
- DTS dist/types-CVnDQVqD.d.ts 6.21 KB
28
+ "constants", "getChecksumAddress" and "shortString" are imported from external module "starknet" but never used in "dist/session/index.js".
29
+ CJS dist/controller.cjs 38.67 KB
30
+ CJS dist/lookup.cjs 1.70 KB
31
+ CJS dist/session/index.cjs 30.88 KB
32
+ CJS dist/node/index.cjs 34.25 KB
33
+ CJS dist/index.cjs 79.32 KB
34
+ CJS dist/controller.cjs.map 73.37 KB
35
+ CJS dist/session/index.cjs.map 57.67 KB
36
+ CJS dist/lookup.cjs.map 4.00 KB
37
+ CJS dist/node/index.cjs.map 65.13 KB
38
+ CJS dist/index.cjs.map 143.79 KB
39
+ CJS ⚡️ Build success in 1188ms
40
+ ESM dist/controller.js 38.64 KB
41
+ ESM dist/lookup.js 1.63 KB
42
+ ESM dist/node/index.js 33.46 KB
43
+ ESM dist/index.js 78.98 KB
44
+ ESM dist/session/index.js 30.75 KB
45
+ ESM dist/controller.js.map 73.28 KB
46
+ ESM dist/lookup.js.map 4.00 KB
47
+ ESM dist/node/index.js.map 64.93 KB
48
+ ESM dist/session/index.js.map 57.52 KB
49
+ ESM dist/index.js.map 143.64 KB
50
+ ESM ⚡️ Build success in 1189ms
51
+ DTS ⚡️ Build success in 6404ms
52
+ DTS dist/index.d.ts 1.20 KB
53
+ DTS dist/controller.d.ts 1.34 KB
54
+ DTS dist/lookup.d.ts 216.00 B
55
+ DTS dist/node/index.d.ts 2.35 KB
56
+ DTS dist/session/index.d.ts 1.90 KB
57
+ DTS dist/policies-DD1aPjQ4.d.ts 565.00 B
58
+ DTS dist/provider-ap1C1ypF.d.ts 6.79 KB
59
+ DTS dist/index.d.cts 1.21 KB
60
+ DTS dist/controller.d.cts 1.34 KB
61
+ DTS dist/lookup.d.cts 216.00 B
62
+ DTS dist/node/index.d.cts 2.36 KB
63
+ DTS dist/session/index.d.cts 1.90 KB
64
+ DTS dist/policies-DD1aPjQ4.d.cts 565.00 B
65
+ DTS dist/provider-ap1C1ypF.d.cts 6.79 KB