databody-cli 1.0.0

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +229 -0
  3. package/dist/index.js +1252 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "databody-cli",
3
+ "version": "1.0.0",
4
+ "description": "DataBody CLI - Health & Fitness Tracking for local LLMs",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "databody": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsup",
11
+ "dev": "tsup --watch",
12
+ "start": "node dist/index.js",
13
+ "typecheck": "tsc --noEmit",
14
+ "test": "vitest run",
15
+ "test:watch": "vitest",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "keywords": [
19
+ "databody",
20
+ "health",
21
+ "fitness",
22
+ "nutrition",
23
+ "macros",
24
+ "calories",
25
+ "cli",
26
+ "llm",
27
+ "ai"
28
+ ],
29
+ "author": "DataBody",
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/databody-ai/databody-cli.git"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/databody-ai/databody-cli/issues"
37
+ },
38
+ "homepage": "https://github.com/databody-ai/databody-cli#readme",
39
+ "engines": {
40
+ "node": ">=20.0.0"
41
+ },
42
+ "type": "module",
43
+ "files": [
44
+ "dist",
45
+ "README.md",
46
+ "LICENSE"
47
+ ],
48
+ "dependencies": {
49
+ "commander": "^13.0.0"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^20.10.0",
53
+ "tsup": "^8.0.1",
54
+ "typescript": "^5.3.3",
55
+ "vitest": "^3.0.0"
56
+ }
57
+ }