forked from reuseman/flashcards-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "flashcards-2",
"version": "0.3.0",
"description": "An Anki integration.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint . --ext .ts,.js --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.js --fix",
"prepare": "husky"
},
"keywords": [
"obsidian",
"anki",
"flashcards"
],
"author": "github.com/reuseman",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.11.3",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.38.1",
"@eslint/js": "^9.39.1",
"@types/jest": "^29.2.0",
"@types/node": "^20.14.8",
"@types/re-template-tag": "^2.0.2",
"@types/showdown": "^2.0.6",
"@types/spark-md5": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.3",
"eslint": "^9.39.1",
"eslint-plugin-obsidianmd": "^0.1.7",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.2.2",
"obsidian": "1.10.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.8.3"
},
"dependencies": {
"dedent": "^1.5.3",
"diff": "^8.0.2",
"marked": "^16.4.1",
"marked-alert": "^2.1.2",
"marked-shiki": "^1.2.1",
"re-template-tag": "^2.0.1",
"shiki": "^3.14.0",
"spark-md5": "^3.0.2"
}
}