@myrialabs/clopen 0.0.1 → 0.0.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.
package/README.md CHANGED
@@ -34,7 +34,7 @@
34
34
  ### Installation
35
35
 
36
36
  ```bash
37
- bun add -g clopen
37
+ bun add -g @myrialabs/clopen
38
38
  ```
39
39
 
40
40
  This installs dependencies, builds the frontend, and makes the `clopen` command available globally.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myrialabs/clopen",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "All-in-one web workspace for Claude Code & OpenCode — chat, terminal, git, browser preview, checkpoints, and real-time collaboration",
5
5
  "author": "Myria Labs",
6
6
  "license": "MIT",
package/tsconfig.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "compilerOptions": {
3
+ // Basic Options
4
+ "target": "ES2022",
5
+ "module": "ES2022",
6
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
7
+ "moduleResolution": "bundler",
8
+ "resolveJsonModule": true,
9
+ "allowJs": true,
10
+ "checkJs": true,
11
+ "esModuleInterop": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "skipLibCheck": true,
14
+ "sourceMap": true,
15
+ "strict": true,
16
+
17
+ // Path Aliases
18
+ "baseUrl": ".",
19
+ "paths": {
20
+ "$backend": ["./backend"],
21
+ "$backend/*": ["./backend/*"],
22
+ "$frontend": ["./frontend"],
23
+ "$frontend/*": ["./frontend/*"],
24
+ "$shared": ["./shared"],
25
+ "$shared/*": ["./shared/*"]
26
+ },
27
+
28
+ // Svelte & Type Checking
29
+ "types": ["svelte", "vite/client", "bun-types"],
30
+ "isolatedModules": true,
31
+ "allowSyntheticDefaultImports": true
32
+ },
33
+ "include": [
34
+ "frontend/**/*.ts",
35
+ "frontend/**/*.js",
36
+ "frontend/**/*.svelte",
37
+ "backend/**/*.ts",
38
+ "backend/**/*.js"
39
+ ],
40
+ "exclude": ["node_modules", "dist", "build"]
41
+ }
package/vite.config.ts CHANGED
@@ -4,7 +4,7 @@ import tailwindcss from '@tailwindcss/vite';
4
4
  import { resolve } from 'path';
5
5
 
6
6
  export default defineConfig({
7
- plugins: [svelte(), tailwindcss()],
7
+ plugins: [tailwindcss(), svelte()],
8
8
  publicDir: 'static',
9
9
  build: {
10
10
  outDir: 'dist',