-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "obsidian-spaced-repetition",
"version": "1.14.1",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"main": "main.js",
"scripts": {
"build": "node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"format": "pnpm prettier --write . && pnpm eslint src/ tests/ --fix",
"lint": "pnpm prettier --check . && pnpm eslint src/ tests/",
"test": "pnpm jest",
"validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"format,lint,test\" \"pnpm:format\" \"pnpm:lint\" \"pnpm:test\"",
"precommit-msg": "echo 'Pre-commit checks...'",
"changelog": "pnpm auto-changelog --template=compact --package --output docs/docs/changelog.md && pnpm prettier --write docs/docs/changelog.md"
},
"keywords": [
"obsidian",
"spaced repetition",
"flashcard",
"flashcards"
],
"author": "Stephen Mwangi",
"maintainers": [
"Kyle Klus"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/vhtml": "^2.2.9",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"auto-changelog": "^2.5.0",
"builtin-modules": "^5.1.0",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"esbuild-plugin-postcss2": "^0.1.2",
"eslint": "^10.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^64.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-expect-message": "^1.1.3",
"moment": "^2.30.1",
"obsidian": "^1.12.3",
"pre-commit": "^1.2.2",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"tslib": "^2.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.1",
"vhtml": "^2.2.0"
},
"dependencies": {
"chart.js": "^4.5.1",
"clozecraft": "^0.4.0",
"gridjs": "^6.2.0",
"minimatch": "^10.2.5",
"pagerank.js": "^1.0.2",
"short-uuid": "^6.0.3",
"ts-fsrs": "5.3.1"
},
"pre-commit": [
"precommit-msg",
"validate"
],
"packageManager": "pnpm@9.10.0",
"engines": {
"pnpm": ">=9.10.0"
},
"engineStrict": true
}