-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 978 Bytes
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
{
"name": "obsidian-the-queue",
"version": "2.0.3",
"description": "Obsidian Plugin that randomly exposes you to notes from your vault. Supports habits, to-dos, spaced repetition flashcards, iterative reading and more.",
"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",
"test": "vitest --sequence.shuffle.tests",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "8.50.0",
"@typescript-eslint/parser": "8.50.0",
"builtin-modules": "5.0.0",
"esbuild": "0.27.2",
"eslint": "^9.39.2",
"obsidian": "latest",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"dependencies": {
"ts-fsrs": "^5.2.3"
}
}