@5n7/clv 0.1.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 ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@5n7/clv",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "bin": {
6
+ "clv": "dist/cli.js"
7
+ },
8
+ "files": ["dist"],
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "scripts": {
13
+ "build": "bun run build:web && bun run build:cli",
14
+ "build:cli": "bun build src/cli/index.ts --target=bun --outfile=dist/cli.js --minify",
15
+ "build:web": "vite build --config src/web/vite.config.ts",
16
+ "dev:serve": "bun src/cli/index.ts examples --port 7421 --no-open",
17
+ "dev:web": "vite --config src/web/vite.config.ts",
18
+ "fmt": "dprint fmt",
19
+ "fmt:check": "dprint check",
20
+ "lint": "oxlint",
21
+ "prepare": "test -f dist/cli.js || bun run build",
22
+ "prepublishOnly": "bun run build",
23
+ "test": "bun test",
24
+ "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p src/web/tsconfig.json --noEmit"
25
+ },
26
+ "dependencies": {
27
+ "@dagrejs/dagre": "^1.1.4",
28
+ "@git-diff-view/file": "^0.0.34",
29
+ "@git-diff-view/react": "^0.0.34",
30
+ "@radix-ui/react-accordion": "^1.2.11",
31
+ "@radix-ui/react-slot": "^1.2.3",
32
+ "@radix-ui/react-tabs": "^1.1.12",
33
+ "@tanstack/react-table": "^8.21.3",
34
+ "@xyflow/react": "^12.8.6",
35
+ "cac": "^7.0.0",
36
+ "class-variance-authority": "^0.7.1",
37
+ "clsx": "^2.1.1",
38
+ "lucide-react": "^0.577.0",
39
+ "marked": "^16.4.0",
40
+ "mermaid": "^11.12.0",
41
+ "react": "^19.2.0",
42
+ "react-dom": "^19.2.0",
43
+ "react-markdown": "^10.1.0",
44
+ "recharts": "^3.2.1",
45
+ "remark-gfm": "^4.0.1",
46
+ "shiki": "^3.13.0",
47
+ "tailwind-merge": "^3.3.1",
48
+ "zod": "^4.1.12"
49
+ },
50
+ "devDependencies": {
51
+ "@fontsource/ibm-plex-sans": "^5.2.6",
52
+ "@fontsource/ibm-plex-serif": "^5.2.6",
53
+ "@fontsource/jetbrains-mono": "^5.2.7",
54
+ "@types/bun": "latest",
55
+ "@types/react": "^19.2.0",
56
+ "@types/react-dom": "^19.2.0",
57
+ "@vitejs/plugin-react": "^6.0.2",
58
+ "autoprefixer": "^10.4.21",
59
+ "postcss": "^8.5.6",
60
+ "tailwindcss": "^3.4.18",
61
+ "vite": "^8.0.13",
62
+ "vite-plugin-singlefile": "^2.3.3"
63
+ },
64
+ "peerDependencies": {
65
+ "dprint": "^0.54.0",
66
+ "oxlint": "^1.65.0",
67
+ "typescript": "^5.6"
68
+ }
69
+ }