supermemo
Version:
A JavaScript/TypeScript implementation of the SuperMemo 2 (SM2) algorithm for spaced based repetition flashcards.
40 lines • 954 B
JSON
{
"name": "supermemo",
"version": "2.0.23",
"description": "A JavaScript/TypeScript implementation of the SuperMemo 2 (SM2) algorithm for spaced based repetition flashcards.",
"keywords": [
"sm2",
"supermemo",
"flashcards",
"supermemo-2",
"spaced-repetition",
"javascript",
"typescript"
],
"homepage": "https://github.com/VienDinhCom/supermemo#readme",
"repository": {
"type": "git",
"url": "https://github.com/VienDinhCom/supermemo"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VienDinhCom/supermemo/issues"
},
"main": "./script/main.js",
"module": "./esm/main.js",
"exports": {
".": {
"import": "./esm/main.js",
"require": "./script/main.js"
}
},
"scripts": {
"test": "node test_runner.js"
},
"devDependencies": {
"@types/node": "^20.9.0",
"picocolors": "^1.0.0",
"@deno/shim-deno": "~0.18.0"
},
"_generatedBy": "dnt@dev"
}