groupchat 0.0.5 → 0.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groupchat",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "CLI chat client for Groupchat",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19,11 +19,11 @@
19
19
  "README.md"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsup src/index.ts --format esm --dts --clean",
23
- "dev": "tsup src/index.ts --format esm --watch",
24
- "dev:bun": "bunx tsup src/index.ts --format esm --watch",
25
- "start": "NODE_ENV=production node dist/index.js",
26
- "start:bun": "NODE_ENV=production bun dist/index.js",
22
+ "build": "tsup src/index.ts --format esm --dts --clean --no-splitting",
23
+ "dev": "tsup src/index.ts --format esm --watch --no-splitting",
24
+ "dev:bun": "bunx tsup src/index.ts --format esm --watch --no-splitting",
25
+ "start": "NODE_ENV=development node dist/index.js",
26
+ "start:bun": "NODE_ENV=development bun dist/index.js",
27
27
  "typecheck": "tsc --noEmit",
28
28
  "prepublishOnly": "npm run typecheck && npm run build"
29
29
  },