mirror of
https://github.com/dralkh/spaceforge.git
synced 2026-07-22 06:45:03 +00:00
JS/TS: - Replace builtin-modules with node:module (esbuild.config.mjs) - Replace fs-extra with native fs (install.js), remove from deps - Fix createEl deprecation: use createDiv/createSpan - Remove unnecessary type assertions, fix unsafe casts - Bind event handlers with arrow functions CSS: - Remove all !important declarations (~30 instances) — replace with chained selectors (.class.class) for equal specificity - Merge all duplicate selectors across 7 CSS files (~50+ instances) - Convert 3-digit hex to 6-digit format (_variables.css) - Fix duplicate CSS properties (overflow-y in mcq.css) - Delete leftover display:none suppression rule in calendar.css Meta: - Bump version to 1.0.5 - Update minAppVersion to 1.8.7 - Add versions.json entry for 1.0.5
38 lines
No EOL
1.1 KiB
JSON
38 lines
No EOL
1.1 KiB
JSON
{
|
|
"name": "spaceforge",
|
|
"version": "1.0.5",
|
|
"description": "A spaced repetition plugin for efficient knowledge review in Obsidian",
|
|
"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",
|
|
"install-plugin": "node install.js",
|
|
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
|
|
"typecheck": "tsc -noEmit -skipLibCheck"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"spaced-repetition",
|
|
"learning"
|
|
],
|
|
"author": "Spaceforge Team",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
"@typescript-eslint/parser": "^8.48.1",
|
|
"esbuild": "^0.17.19",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
"globals": "^16.5.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^4.7.4",
|
|
"typescript-eslint": "^8.48.1"
|
|
},
|
|
"dependencies": {
|
|
"ts-fsrs": "^4.7.1"
|
|
}
|
|
} |