forketyfork_obsidian-food-t.../package.json
dependabot[bot] 7bd973c798
chore(deps): bump the all-dependencies group with 2 updates
Bumps the all-dependencies group with 2 updates: [@codemirror/view](https://github.com/codemirror/view) and [eslint](https://github.com/eslint/eslint).


Updates `@codemirror/view` from 6.41.0 to 6.41.1
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codemirror/view/commits)

Updates `eslint` from 10.2.0 to 10.2.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v10.2.0...v10.2.1)

---
updated-dependencies:
- dependency-name: "@codemirror/view"
  dependency-version: 6.41.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-version: 10.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-20 07:10:16 +00:00

66 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.2",
"@typescript-eslint/parser": "^8.58.2",
"builtin-modules": "^5.1.0",
"csso-cli": "^4.0.2",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-obsidianmd": "^0.2.3",
"globals": "^17.5.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"obsidian": "latest",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
},
"packageManager": "yarn@4.12.0",
"dependencies": {
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"lodash": "^4.18.1",
"rxjs": "^7.8.1"
}
}