UNPKG

@profullstack/fasting

Version:

A comprehensive CLI and Node.js module for 16:8 intermittent fasting with meal tracking, weight monitoring, and fast history with visual charts

71 lines 1.84 kB
{ "name": "@profullstack/fasting", "version": "1.6.4", "description": "A comprehensive CLI and Node.js module for 16:8 intermittent fasting with meal tracking, weight monitoring, and fast history with visual charts", "type": "module", "main": "lib/index.js", "files": [ "lib", "bin", "examples", "README.md" ], "repository": { "type": "git", "url": "https://github.com/profullstack/fasting.git" }, "bugs": { "url": "https://github.com/profullstack/fasting/issues" }, "homepage": "https://profullstack.com", "bin": { "fasting": "./bin/cli.js" }, "keywords": [ "fasting", "intermittent-fasting", "16-8", "meal-tracking", "weight-tracking", "calorie-estimation", "health", "fitness", "nutrition", "cli", "charts", "openai", "gpt", "ascii-charts", "dashboard" ], "author": "Profullstack, Inc.", "license": "MIT", "dependencies": { "archiver": "^7.0.1", "asciichart": "^1.5.25", "commander": "^12.0.0", "openai": "^4.103.0", "prompts": "^2.4.2", "@supabase/supabase-js": "^2.39.0" }, "devDependencies": { "husky": "^9.0.0" }, "engines": { "node": ">=18.0.0" }, "scripts": { "test": "node tests/run-tests.js", "test:ai": "node tests/run-tests.js --test-ai", "test:fast": "node --test tests/fast.test.js", "test:charts": "node --test tests/charts.test.js", "test:fasting": "node --test tests/fasting.test.js", "test:weight": "node --test tests/weight.test.js", "test:calorie-chart": "node --test tests/calorie-chart.test.js", "test:exercise": "node --test tests/exercise.test.js", "example": "node examples/basic-usage.js", "example:api": "node examples/api-usage.js", "cli": "./bin/cli.js", "pre-commit": "pnpm test" } }