evdboom_Bindery/package.json
Erik van der Boom 87906e8e42 feat: update package.json to set module type and add eslint-plugin-obsidianmd as devDependency
fix: refactor lineBoundaryWrap function and improve startReviewMarkerCommand logic in extension.ts

refactor: simplify invoke functions in mcp.ts by removing async where unnecessary
2026-05-06 12:08:58 +02:00

23 lines
586 B
JSON

{
"name": "bindery-monorepo",
"private": true,
"type": "module",
"workspaces": [
"bindery-core",
"bindery-merge",
"vscode-ext",
"mcp-ts",
"obsidian-plugin"
],
"scripts": {
"build": "npm run build -ws --if-present",
"test": "npm run test -ws --if-present",
"lint": "npx eslint . --format=stylish",
"lint:fix": "npx eslint . --fix",
"build:core": "npm run build --workspace=bindery-core",
"obsidian:sync-version": "node ./scripts/sync-obsidian-version.mjs"
},
"devDependencies": {
"eslint-plugin-obsidianmd": "^0.2.9"
}
}