@sanurb/ringi 0.1.0 → 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,27 +1,17 @@
1
1
  {
2
2
  "name": "@sanurb/ringi",
3
- "version": "0.1.0",
4
- "description": "Local-first code review tool for AI-generated changes — CLI, Web UI, and MCP server",
5
- "keywords": [
6
- "ai",
7
- "cli",
8
- "code-review",
9
- "diff",
10
- "git",
11
- "local-first",
12
- "mcp",
13
- "provenance",
14
- "review"
15
- ],
3
+ "version": "0.2.0",
4
+ "description": "Local-first code review tool for AI-generated changes — CLI and MCP server",
16
5
  "homepage": "https://github.com/sanurb/ringi#readme",
17
6
  "bugs": {
18
7
  "url": "https://github.com/sanurb/ringi/issues"
19
8
  },
20
- "license": "GPL-3.0-only",
9
+ "license": "MIT",
21
10
  "author": "sanurb",
22
11
  "repository": {
23
12
  "type": "git",
24
- "url": "git+https://github.com/sanurb/ringi.git"
13
+ "url": "git+https://github.com/sanurb/ringi.git",
14
+ "directory": "apps/cli"
25
15
  },
26
16
  "bin": {
27
17
  "ringi": "dist/cli.js"
@@ -38,85 +28,22 @@
38
28
  }
39
29
  },
40
30
  "scripts": {
41
- "dev": "vite dev",
42
- "dev:cli": "npx tsx src/cli/main.ts",
43
- "build": "vite build",
44
- "build:cli": "tsup",
45
- "build:all": "pnpm build:cli && pnpm build",
46
- "preview": "vite preview",
31
+ "dev": "npx tsx src/cli/main.ts",
32
+ "build": "tsup",
47
33
  "test": "vitest run",
48
34
  "typecheck": "tsc --noEmit",
49
- "lint": "oxlint --type-aware --type-check",
50
- "lint:fix": "oxlint --type-aware --type-check --fix",
51
- "check": "ultracite check",
52
- "fix": "ultracite fix",
53
- "prepack": "pnpm build:cli",
54
- "package:check": "pnpm build:cli && npm pack --dry-run 2>&1",
55
- "package:inspect": "pnpm build:cli && npm pack && tar tzf ringi-*.tgz | head -80 && rm -f ringi-*.tgz",
56
- "release:preflight": "pnpm typecheck && pnpm check && pnpm test && pnpm build:cli && node dist/cli.js --version && npm pack --dry-run",
57
- "release:dry-run": "pnpm release:preflight && npm publish --dry-run --access public",
58
- "deps": "pnpm dlx taze@latest -Ilw",
59
- "deps:major": "pnpm dlx taze@latest major -Ilw",
60
- "tanstack": "pnpm dlx @tanstack/cli@latest",
61
- "prepare": "lefthook install"
35
+ "prepack": "pnpm build"
62
36
  },
63
37
  "dependencies": {
64
38
  "@effect/platform": "^0.93.8",
65
- "chokidar": "^5.0.0",
39
+ "@ringi/core": "workspace:*",
66
40
  "effect": "^3.21.0"
67
41
  },
68
42
  "devDependencies": {
69
- "@effect-atom/atom": "^0.4.13",
70
- "@effect-atom/atom-react": "^0.4.6",
71
- "@effect/language-service": "^0.62.5",
72
- "@effect/platform-browser": "^0.73.0",
73
- "@effect/rpc": "^0.72.2",
74
- "@fontsource-variable/geist": "^5.2.8",
75
- "@pierre/diffs": "^1.1.3",
76
- "@radix-ui/react-use-controllable-state": "^1.2.2",
77
- "@react-grab/mcp": "^0.1.28",
78
- "@shikijs/transformers": "^4.0.2",
79
- "@tailwindcss/vite": "^4.2.2",
80
- "@tanstack/devtools-vite": "^0.3.12",
81
- "@tanstack/react-devtools": "^0.7.11",
82
- "@tanstack/react-router": "^1.168.2",
83
- "@tanstack/react-router-devtools": "^1.166.11",
84
- "@tanstack/react-router-ssr-query": "^1.166.10",
85
- "@tanstack/react-start": "^1.167.3",
86
- "@tanstack/router-plugin": "^1.167.3",
87
- "@testing-library/dom": "^10.4.1",
88
- "@testing-library/react": "^16.3.2",
89
43
  "@types/node": "^22.19.15",
90
- "@types/react": "^19.2.14",
91
- "@types/react-dom": "^19.2.3",
92
- "@vitejs/plugin-react": "^5.2.0",
93
- "class-variance-authority": "^0.7.1",
94
- "clsx": "^2.1.1",
95
- "jsdom": "^27.4.0",
96
- "lefthook": "^2.1.4",
97
- "lucide-react": "^0.544.0",
98
- "motion": "^12.38.0",
99
- "nitro": "latest",
100
- "oxfmt": "^0.41.0",
101
- "oxlint": "^1.56.0",
102
- "oxlint-tsgolint": "^0.17.4",
103
- "radix-ui": "^1.4.3",
104
- "react": "^19.2.4",
105
- "react-dom": "^19.2.4",
106
- "react-grab": "^0.1.28",
107
- "react-icons": "^5.6.0",
108
- "shadcn": "^4.1.0",
109
- "shiki": "^4.0.2",
110
- "tailwind-merge": "^3.5.0",
111
- "tailwindcss": "^4.2.2",
112
44
  "tsup": "^8.5.1",
113
- "tw-animate-css": "^1.4.0",
114
45
  "typescript": "^5.9.3",
115
- "ultracite": "7.3.2",
116
- "vite": "^7.3.1",
117
- "vite-tsconfig-paths": "^5.1.4",
118
- "vitest": "^3.2.4",
119
- "web-vitals": "^5.1.0"
46
+ "vitest": "^3.2.4"
120
47
  },
121
48
  "engines": {
122
49
  "node": ">=22.5.0"