-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "kc-beta",
"version": "0.8.3",
"description": "KC Agent — LLM document verification agent (pure Node.js CLI). Dual-licensed: PolyForm Noncommercial 1.0.0 for personal/noncommercial use; commercial license required for enterprise production. See LICENSE and LICENSE-COMMERCIAL.md.",
"type": "module",
"bin": {
"kc-beta": "bin/kc-beta.js"
},
"files": [
"bin/",
"src/",
"!src/cli/meme.source.js",
"template/",
"README.md",
"QUICKSTART.md",
"LICENSE",
"LICENSE-COMMERCIAL.md"
],
"scripts": {
"build:meme": "node scripts/build-meme.js",
"prepublishOnly": "node scripts/build-meme.js",
"test": "node scripts/run-tests.js"
},
"homepage": "https://github.com/kitchen-engineer42/kc-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/kitchen-engineer42/kc-cli.git"
},
"bugs": {
"url": "https://github.com/kitchen-engineer42/kc-cli/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"ink": "^6.0.0",
"ink-text-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"mammoth": "^1.6.0",
"react": "^19.0.0",
"pdfjs-dist": "^4.0.0",
"word-extractor": "^1.0.4"
},
"keywords": [
"document-verification",
"llm",
"agent",
"cli"
],
"author": "kitchen-engineer42",
"license": "SEE LICENSE IN LICENSE"
}