mirror of
https://github.com/forketyfork/obsidian-food-tracker.git
synced 2026-07-22 13:00:26 +00:00
Bumps the all-dependencies group with 1 update: [esbuild](https://github.com/evanw/esbuild). Updates `esbuild` from 0.25.8 to 0.25.9 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9) --- updated-dependencies: - dependency-name: esbuild dependency-version: 0.25.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
61 lines
2.2 KiB
JSON
61 lines
2.2 KiB
JSON
{
|
|
"name": "obsidian-food-tracker",
|
|
"version": "0.4.4",
|
|
"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 styles.src.css --output styles.css",
|
|
"release": "yarn version --no-git-tag-version && git add . && git commit -m \"v$(node -p \"require('./package.json').version\")\" && git checkout -b release/$(node -p \"require('./package.json').version\") && git push origin release/$(node -p \"require('./package.json').version\")",
|
|
"tag-release": "git tag $(node -p \"require('./package.json').version\") && git push origin --tags"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"food",
|
|
"nutrition",
|
|
"calories"
|
|
],
|
|
"author": "Forketyfork",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.33.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/lodash": "^4.17.20",
|
|
"@types/node": "^24.2.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.39.1",
|
|
"@typescript-eslint/parser": "^8.39.1",
|
|
"builtin-modules": "^5.0.0",
|
|
"csso-cli": "^4.0.2",
|
|
"esbuild": "^0.25.9",
|
|
"eslint": "^9.33.0",
|
|
"globals": "^16.3.0",
|
|
"jest": "^30.0.5",
|
|
"jest-environment-jsdom": "^30.0.5",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.1",
|
|
"tslib": "^2.8.1",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
|
|
"dependencies": {
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/view": "^6.38.1",
|
|
"lodash": "^4.17.21",
|
|
"rxjs": "^7.8.1"
|
|
}
|
|
}
|