dralkh_spaceforge/package.json

41 lines
No EOL
1.2 KiB
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",
"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/fs-extra": "^11.0.4",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"builtin-modules": "3.3.0",
"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": {
"fs-extra": "^11.1.1",
"ts-fsrs": "^4.7.1"
}
}