claude-ws 0.1.4 → 0.1.6

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/next.config.ts CHANGED
@@ -1,6 +1,15 @@
1
1
  import type { NextConfig } from "next";
2
+ import path from "path";
2
3
 
3
4
  const nextConfig: NextConfig = {
5
+ outputFileTracingRoot: path.join(__dirname),
6
+ outputFileTracingIncludes: {
7
+ '/': ['./src/**/*'],
8
+ },
9
+ experimental: {
10
+ optimizePackageImports: ['lucide-react'],
11
+ },
12
+ staticPageGenerationTimeout: 120,
4
13
  images: {
5
14
  remotePatterns: [
6
15
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-ws",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "description": "A beautifully crafted workspace interface for Claude Code with real-time streaming and local SQLite database",
6
6
  "keywords": [
@@ -113,7 +113,7 @@
113
113
  "highlight.js": "^11.11.1",
114
114
  "lucide-react": "^0.562.0",
115
115
  "nanoid": "^5.1.6",
116
- "next": "16.1.1",
116
+ "next": "^16.1.3",
117
117
  "next-themes": "^0.4.6",
118
118
  "react": "19.2.3",
119
119
  "react-dom": "19.2.3",
@@ -138,7 +138,7 @@
138
138
  "@types/react-dom": "^19",
139
139
  "drizzle-kit": "^0.31.8",
140
140
  "eslint": "^9",
141
- "eslint-config-next": "16.1.1",
141
+ "eslint-config-next": "^16.1.3",
142
142
  "tailwindcss": "^4",
143
143
  "tw-animate-css": "^1.4.0",
144
144
  "typescript": "^5"