dralkh_spaceforge/package.json
dralkh 312444123f chore: release v1.0.2 with enhanced Pomodoro timer features
- Add user override interface for custom time estimation
- Implement override-only calculation support
- Enhance cycle tracking with detailed progress display
- Fix timer visibility and estimation logic
- Include compiled assets for distribution
2025-10-04 13:54:24 +03:00

34 lines
941 B
JSON

{
"name": "spaceforge",
"version": "1.0.2",
"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"
},
"keywords": [
"obsidian",
"spaced-repetition",
"learning"
],
"author": "Spaceforge Team",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.17.19",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"fs-extra": "^11.1.1",
"ts-fsrs": "^4.7.1"
}
}