claude-remote-cli 2.3.1 → 2.3.3

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.
@@ -11,8 +11,8 @@
11
11
  <meta name="apple-mobile-web-app-capable" content="yes" />
12
12
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
13
13
  <meta name="theme-color" content="#1a1a1a" />
14
- <script type="module" crossorigin src="/assets/index-BGqcIpDR.js"></script>
15
- <link rel="stylesheet" crossorigin href="/assets/index-8m372dVq.css">
14
+ <script type="module" crossorigin src="/assets/index-Dyq_tVrz.js"></script>
15
+ <link rel="stylesheet" crossorigin href="/assets/index-BhPDVkAS.css">
16
16
  </head>
17
17
  <body>
18
18
  <div id="app"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-remote-cli",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "description": "Remote web interface for Claude Code CLI sessions",
5
5
  "type": "module",
6
6
  "main": "dist/server/index.js",
@@ -11,12 +11,14 @@
11
11
  "dist/"
12
12
  ],
13
13
  "scripts": {
14
- "build": "tsc && vite build --config frontend/vite.config.ts",
14
+ "check": "tsc --noEmit && svelte-check --workspace frontend",
15
+ "check:svelte": "svelte-check --workspace frontend",
16
+ "build": "tsc && svelte-check --workspace frontend && vite build --config frontend/vite.config.ts",
15
17
  "build:server": "tsc",
16
- "build:frontend": "vite build --config frontend/vite.config.ts",
18
+ "build:frontend": "svelte-check --workspace frontend && vite build --config frontend/vite.config.ts",
17
19
  "dev": "vite --config frontend/vite.config.ts",
18
- "start": "tsc && vite build --config frontend/vite.config.ts && node dist/server/index.js",
19
- "test": "tsc -p tsconfig.test.json && node --test dist/test/*.test.js",
20
+ "start": "tsc && svelte-check --workspace frontend && vite build --config frontend/vite.config.ts && node dist/server/index.js",
21
+ "test": "svelte-check --workspace frontend && tsc -p tsconfig.test.json && node --test dist/test/*.test.js",
20
22
  "prepublishOnly": "npm run build",
21
23
  "postinstall": "chmod +x node_modules/node-pty/prebuilds/darwin-arm64/spawn-helper 2>/dev/null || true"
22
24
  },