dotenvx-ui 0.1.1 → 0.2.0

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": "dotenvx-ui",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Terminal and web UI for managing dotenvx environment files",
5
5
  "author": "Alexandru Burla <alexandru.burla@gmail.com>",
6
6
  "license": "MIT",
@@ -19,10 +19,12 @@
19
19
  "dist"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsup",
22
+ "build": "tsup && vite build",
23
23
  "dev": "tsup --watch",
24
24
  "typecheck": "tsc --noEmit",
25
+ "lint": "biome check --no-errors-on-unmatched",
25
26
  "test": "pnpm build && tsc --noEmit && node --import tsx/esm --test 'src/test/**/*.test.ts'",
27
+ "coverage": "pnpm build && tsc --noEmit && c8 --reporter=text --reporter=lcov --include='src/**/*.ts' --exclude='src/test/**' --exclude='src/tui/**' --exclude='src/ui/app/**' --exclude='src/ui/server.ts' --exclude='src/cli.tsx' node --import tsx/esm --test 'src/test/**/*.test.ts'",
26
28
  "prepublishOnly": "pnpm build"
27
29
  },
28
30
  "keywords": [
@@ -39,9 +41,13 @@
39
41
  "dependencies": {
40
42
  "@dotenvx/dotenvx": "^1.71.2",
41
43
  "clipboardy": "^5.3.1",
44
+ "express": "^5.2.1",
42
45
  "get-port": "^7.2.0",
43
46
  "ink": "^7.0.5",
44
- "react": "^19.2.7"
47
+ "lucide-react": "^1.21.0",
48
+ "open": "^11.0.0",
49
+ "react": "^19.2.7",
50
+ "react-dom": "^19.2.7"
45
51
  },
46
52
  "pnpm": {
47
53
  "onlyBuiltDependencies": [
@@ -49,11 +55,19 @@
49
55
  ]
50
56
  },
51
57
  "devDependencies": {
58
+ "@biomejs/biome": "^2.5.1",
59
+ "@tailwindcss/vite": "^4.3.1",
60
+ "@types/express": "^5.0.6",
52
61
  "@types/node": "^25.9.3",
53
62
  "@types/react": "^19.2.17",
63
+ "@types/react-dom": "^19.2.3",
64
+ "@vitejs/plugin-react": "^6.0.2",
65
+ "c8": "^11.0.0",
54
66
  "esbuild": "^0.28.0",
67
+ "tailwindcss": "^4.3.1",
55
68
  "tsup": "^8.5.1",
56
69
  "tsx": "^4.22.4",
57
- "typescript": "^6.0.3"
70
+ "typescript": "^6.0.3",
71
+ "vite": "^8.0.16"
58
72
  }
59
73
  }