sieveai 0.2.0 → 0.2.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SieveAi
2
2
 
3
- ![](/sieveAssets/banner_f.png)
3
+ ![](https://raw.githubusercontent.com/Jayesh-Dev21/SieveAi/refs/heads/master/sieveAssets/banner_f.png?token=GHSAT0AAAAAADMCDFJPSGFGCRY5XQA6J34K2NJCCLA)
4
4
 
5
5
  ![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=flat&logo=typescript&logoColor=white)
6
6
  ![Node.js](https://img.shields.io/badge/node-%3E%3D20-brightgreen)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sieveai",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Local-first AI code review CLI/TUI with hybrid static+AI analysis, confidence filtering, and incremental caching",
5
5
  "keywords": [
6
6
  "code-review",
@@ -12,7 +12,7 @@
12
12
  "static-analysis",
13
13
  "typescript"
14
14
  ],
15
- "homepage": "https://github.com/Jayesh-Dev21/SieveAi",
15
+ "homepage": "https://sieve-ai.vercel.app/",
16
16
  "bugs": {
17
17
  "url": "https://github.com/Jayesh-Dev21/SieveAi/issues"
18
18
  },
@@ -36,6 +36,9 @@
36
36
  "scripts": {
37
37
  "build": "tsc",
38
38
  "dev": "tsc --watch",
39
+ "web:dev": "cd web && npm run dev",
40
+ "web:build": "cd web && npm run build",
41
+ "web:preview": "cd web && npm run preview",
39
42
  "test": "vitest run",
40
43
  "test:watch": "vitest",
41
44
  "test:coverage": "vitest run --coverage",