towns-bot 0.0.429 → 0.0.431
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.mjs +4 -4
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
import { green as green2, red as red3, yellow as yellow3, cyan as cyan3 } from "picocolors";
|
|
3
3
|
|
|
4
4
|
// src/modules/init.ts
|
|
5
|
-
import * as fs2 from "
|
|
6
|
-
import * as path2 from "
|
|
5
|
+
import * as fs2 from "fs";
|
|
6
|
+
import * as path2 from "path";
|
|
7
7
|
import { default as prompts } from "prompts";
|
|
8
8
|
import { red, yellow, cyan } from "picocolors";
|
|
9
9
|
import * as jsonc from "jsonc-parser";
|
|
10
10
|
|
|
11
11
|
// src/modules/utils.ts
|
|
12
|
-
import * as fs from "
|
|
13
|
-
import * as path from "
|
|
12
|
+
import * as fs from "fs";
|
|
13
|
+
import * as path from "path";
|
|
14
14
|
import { default as spawn } from "cross-spawn";
|
|
15
15
|
import picocolors from "picocolors";
|
|
16
16
|
var getPackageManager = () => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "towns-bot",
|
|
3
3
|
"description": "CLI for creating and managing Towns Protocol bot projects",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.431",
|
|
5
5
|
"author": "Towns Protocol",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsup",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@bufbuild/protobuf": "^2.9.0",
|
|
16
16
|
"@connectrpc/connect-node": "^2.1.0",
|
|
17
|
-
"@towns-protocol/proto": "^0.0.
|
|
18
|
-
"@towns-protocol/sdk": "^0.0.
|
|
19
|
-
"@towns-protocol/utils": "^0.0.
|
|
17
|
+
"@towns-protocol/proto": "^0.0.431",
|
|
18
|
+
"@towns-protocol/sdk": "^0.0.431",
|
|
19
|
+
"@towns-protocol/utils": "^0.0.431",
|
|
20
20
|
"cross-spawn": "^7.0.5",
|
|
21
21
|
"dotenv": "^17.2.3",
|
|
22
22
|
"ethers": "^5.8.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "02cd0a82c6fe5e92ce21456e2aa910978b46a1bf"
|
|
61
61
|
}
|