-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.92 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
{
"name": "@eigenpal/cli",
"version": "0.4.5",
"description": "Eigenpal CLI — author and run document workflows from your terminal. Agent-ready.",
"keywords": [
"eigenpal",
"cli",
"ai",
"agent",
"workflow",
"llm",
"evals",
"experiments",
"document",
"extraction",
"ocr"
],
"homepage": "https://github.com/eigenpal/cli#readme",
"bugs": {
"url": "https://github.com/eigenpal/cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eigenpal/cli"
},
"license": "Apache-2.0",
"author": "Jedr Blaszyk <jedr@eigenpal.com> (https://eigenpal.com)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"bin": {
"eigenpal": "dist/cli.js"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun src/cli.ts",
"build": "bun run generate:skill && bun build src/cli.ts --outdir dist --target node --format esm && rm -rf dist/templates dist/skill && cp -R src/templates dist/templates && cp -R src/skill dist/skill",
"generate:skill": "bun scripts/generate-skill-reference.ts",
"generate:skill:check": "bun scripts/generate-skill-reference.ts --check",
"generate:cli-docs": "bun scripts/generate-cli-docs.ts",
"generate:cli-docs:check": "bun scripts/generate-cli-docs.ts --check",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.3.0",
"@opentelemetry/api": "^1.9.0",
"ajv": "^8.17.1",
"commander": "^14.0.3",
"fflate": "0.8.2",
"nanoid": "^5.0.9",
"openai": "^6.27.0",
"picocolors": "^1.1.1",
"quickjs-emscripten": "^0.32.0",
"yaml": "^2.7.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@t3-oss/env-core": "^0.13.11",
"bun-types": "latest",
"prettier": "^3.8.1",
"typescript": "^6.0.3"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}