-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "lucasapp-cli",
"version": "0.6.8",
"description": "LucasApp CLI - Financial data management for AI agents",
"author": "StevenACZ",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/StevenACZ/lucas-cli.git"
},
"homepage": "https://dashboard.lucasapp.app/cli",
"type": "module",
"packageManager": "bun@1.3.12",
"bin": {
"lucas": "dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run --passWithNoTests"
},
"files": [
"dist"
],
"keywords": [
"lucasapp",
"finance",
"cli",
"ai-agents"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^14.0.3"
},
"overrides": {
"brace-expansion": "^5.0.6",
"picomatch": "^4.0.4",
"postcss": "^8.5.14",
"vite": "^8.0.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.2",
"eslint": "^10.3.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.5"
}
}