-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sieveai",
"version": "1.0.1",
"description": "Local-first AI code review CLI/TUI with hybrid static+AI analysis, confidence filtering, and incremental caching",
"keywords": [
"code-review",
"ai",
"cli",
"tui",
"local-llm",
"ollama",
"static-analysis",
"typescript"
],
"homepage": "https://sieve-ai.vercel.app/",
"bugs": {
"url": "https://github.com/Jayesh-Dev21/SieveAi/issues"
},
"license": "MIT",
"author": "Jayesh-Dev21",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"sieveai": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"web:dev": "cd web && npm run dev",
"web:build": "cd web && npm run build",
"web:preview": "cd web && npm run preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"check": "npx tsx src/cli/index.ts check",
"check:verbose": "npx tsx src/cli/index.ts check --verbose",
"check:json": "npx tsx src/cli/index.ts check --format json",
"start": "node dist/cli/index.js",
"setup": "npm install && npm run build"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"better-sqlite3": "^11.7.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"debug": "^4.3.7",
"ink": "^5.0.1",
"ora": "^8.1.1",
"react": "^18.3.1",
"simple-git": "^3.27.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/better-sqlite3": "^7.6.12",
"@types/debug": "^4.1.12",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
}
}