cc-inspector 0.1.4 → 0.1.5

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 (2) hide show
  1. package/package.json +3 -3
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-inspector",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "description": "Transparent proxy for the Anthropic Claude API that captures and displays requests/responses in a web UI",
6
6
  "license": "MIT",
@@ -27,8 +27,8 @@
27
27
  "styles"
28
28
  ],
29
29
  "scripts": {
30
- "dev": "NODE_ENV=development bun --hot src/index.ts",
31
- "start": "bun src/index.ts",
30
+ "dev": "bun --hot src/index.ts",
31
+ "start": "NODE_ENV=production bun src/index.ts",
32
32
  "build": "bun run build.ts",
33
33
  "typecheck": "tsc --noEmit",
34
34
  "lint": "eslint .",
package/src/index.ts CHANGED
@@ -46,7 +46,7 @@ const server = serve({
46
46
  "/*": index,
47
47
  },
48
48
 
49
- development: process.env.NODE_ENV === "development" && {
49
+ development: process.env.NODE_ENV !== "production" && {
50
50
  hmr: true,
51
51
  console: true,
52
52
  },