mirror of
https://github.com/forketyfork/obsidian-food-tracker.git
synced 2026-07-22 13:00:26 +00:00
65 lines
1.9 KiB
JSON
65 lines
1.9 KiB
JSON
{
|
|
"name": "obsidian-food-tracker",
|
|
"version": "0.17.2",
|
|
"description": "A plugin to track your food intake (calories, macronutrients) and nutritional information in Obsidian.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"dev:watch": "node esbuild.config.mjs --watch",
|
|
"prod": "node esbuild.config.mjs --production",
|
|
"typecheck": "tsc -noEmit -skipLibCheck",
|
|
"format": "prettier --write .",
|
|
"test": "jest",
|
|
"test:dev": "yarn dev && jest",
|
|
"test:watch": "yarn dev && jest --watch",
|
|
"coverage": "yarn dev && jest --coverage",
|
|
"lint": "eslint .",
|
|
"build": "yarn typecheck && yarn lint && yarn format && yarn prod && yarn test",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"build:css": "csso src/styles.src.css --output styles.css",
|
|
"release": "node release.mjs",
|
|
"tag-release": "git tag $(node -p \"require('./package.json').version\") && git push origin --tags"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"food",
|
|
"nutrition",
|
|
"calories"
|
|
],
|
|
"author": "Forketyfork",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@eslint/json": "1.2.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/lodash": "^4.17.24",
|
|
"@types/node": "^25.6.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
"@typescript-eslint/parser": "^8.58.1",
|
|
"builtin-modules": "^5.0.0",
|
|
"csso-cli": "^4.0.2",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^10.2.0",
|
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
"globals": "^17.4.0",
|
|
"jest": "^30.3.0",
|
|
"jest-environment-jsdom": "^30.3.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.8.2",
|
|
"ts-jest": "^29.4.9",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^6.0.2",
|
|
"typescript-eslint": "^8.58.1"
|
|
},
|
|
"packageManager": "yarn@4.12.0",
|
|
"dependencies": {
|
|
"@codemirror/state": "^6.6.0",
|
|
"@codemirror/view": "^6.41.0",
|
|
"lodash": "^4.18.1",
|
|
"rxjs": "^7.8.1"
|
|
}
|
|
}
|