-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "lucasapp-cli",
"version": "0.4.0",
"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://lucas.stevenacz.com/cli",
"type": "module",
"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"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}