mirror of
https://github.com/gapmiss/badges.git
synced 2026-07-22 08:00:30 +00:00
- Add eslint-plugin-obsidianmd with typescript-eslint type-checked rules - Fix TypeScript: remove any types, unused vars, console.log statements - Fix DOM: use createSpan() instead of document.createElement - Fix CSS: remove !important declarations - Replace builtin-modules with Node's module.builtinModules - Pin @codemirror dependencies to exact versions - Add pnpm lockfile for reproducible builds - Add GitHub workflow for artifact attestation - Add release script Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
754 B
JSON
29 lines
754 B
JSON
{
|
|
"name": "badges",
|
|
"version": "1.1.0",
|
|
"description": "Badges for Obsidian (https://obsidian.md)",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/parser": "^8.59.4",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "5.4.5",
|
|
"typescript-eslint": "^8.59.4"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/state": "6.5.0",
|
|
"@codemirror/view": "6.38.6"
|
|
}
|
|
}
|