edems-dev_md-discord-syntax/package.json
Edems b3294030f8 fix(obsidian): warning+id
- Changed plugin ID to md-discord-syntax across manifests, validation, package metadata, and release instructions.
 - Resolved TypeScript unsafe-value warnings through correct typed ESLint configuration and source typing.
 - Replaced flagged document.createElement usage with Obsidian createEl.
 - Addressed text-decoration compatibility warnings.
 - Optimized spoiler detection to inspect only relevant document lines instead of allocating the full document text.
 - Updated tests for strict type safety and promise handling.
2026-07-21 21:45:33 +02:00

30 lines
1,004 B
JSON

{
"name": "md-discord-syntax-monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo for Discord syntax extensions (core, remark, obsidian)",
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "npm run build -w @edems-dev/md-discord-syntax-core",
"build": "npm run build --workspaces --if-present",
"pretest": "npm run build -w @edems-dev/md-discord-syntax-core",
"test": "npm run test --workspaces --if-present",
"lint": "eslint .",
"pretypecheck": "npm run build -w @edems-dev/md-discord-syntax-core",
"typecheck": "npm run typecheck --workspaces --if-present",
"validate": "node scripts/validate.js",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,json,md,css,yml,yaml}\""
},
"author": "Edems-DEV",
"license": "GPL-3.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.7.0",
"prettier": "^3.3.0",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.65.0"
}
}