@rilaptra/digester 17.2.0-ai

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 (3) hide show
  1. package/README.md +152 -0
  2. package/dist/index.js +10221 -0
  3. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@rilaptra/digester",
3
+ "version": "17.2.0-ai",
4
+ "description": "High-performance codebase context generator and AI operations toolkit optimized for Bun.",
5
+ "module": "dist/index.js",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "type": "module",
9
+ "bin": {
10
+ "digest": "dist/index.js",
11
+ "prompter": "dist/index.js"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/Rilaptra/digester.git"
22
+ },
23
+ "keywords": [
24
+ "cli",
25
+ "ai",
26
+ "llm",
27
+ "context",
28
+ "digest",
29
+ "bun",
30
+ "typescript",
31
+ "automation",
32
+ "productivity"
33
+ ],
34
+ "author": {
35
+ "name": "Rizqi Lasheva Purnama Putra",
36
+ "url": "https://erzysh.vercel.app"
37
+ },
38
+ "license": "MIT",
39
+ "bugs": {
40
+ "url": "https://github.com/Rilaptra/digester/issues"
41
+ },
42
+ "homepage": "https://github.com/Rilaptra/digester#readme",
43
+ "scripts": {
44
+ "codegen": "bun run scripts/generate-registry.ts",
45
+ "build": "bun run codegen && bun build ./src/index.ts --outfile ./dist/index.js --target bun",
46
+ "b": "bun run codegen && bun build ./src/index.ts --outfile ./dist/index.js --target bun",
47
+ "dev": "bun run codegen && bun src/index.ts",
48
+ "start": "bun dist/index.js",
49
+ "setup": "bun run build && bun src/index.ts setup"
50
+ },
51
+ "devDependencies": {
52
+ "@biomejs/biome": "2.3.11",
53
+ "bun-types": "latest"
54
+ },
55
+ "dependencies": {
56
+ "@types/bun": "^1.3.5",
57
+ "boxen": "^8.0.1",
58
+ "chalk": "^5.6.2",
59
+ "cli-table3": "^0.6.5",
60
+ "ora": "^9.0.0"
61
+ }
62
+ }