-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.19 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.19 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
74
75
76
77
78
79
80
81
{
"name": "yanki-obsidian",
"version": "1.11.0",
"description": "An Obsidian plugin that syncs flashcards from a folder in your vault to Anki. Pure Markdown syntax. No fuss.",
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"anki",
"flashcards",
"markdown",
"spaced-repetition",
"sync",
"pkm"
],
"homepage": "https://github.com/kitschpatrol/yanki-obsidian",
"bugs": "https://github.com/kitschpatrol/yanki-obsidian/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitschpatrol/yanki-obsidian.git"
},
"license": "MIT",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"type": "module",
"main": "./dist/main.js",
"scripts": {
"build": "rimraf ./dist && tsc -noEmit -skipLibCheck && tsx ./scripts/build.ts production",
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
"dev": "rimraf ./dist && tsx ./scripts/build.ts",
"fix": "ksc fix",
"lint": "ksc lint",
"release": "bumpp package.json manifest.json -x 'pnpm run build' -c 'Release: %s' --tag '%s'",
"yanki:deploy-local": "cp -r ./dist/* ~/Notes/Vault/.obsidian/plugins/yanki",
"yanki:use-local": "pnpm remove yanki ; pnpm add -D ../yanki",
"yanki:use-npm": "pnpm remove yanki ; pnpm add -D yanki"
},
"devDependencies": {
"@kitschpatrol/shared-config": "^6.0.2",
"@types/node": "~20.11.30",
"bumpp": "^10.4.1",
"chokidar": "^5.0.0",
"debounce": "^3.0.0",
"entities": "^7.0.1",
"esbuild": "^0.27.3",
"esbuild-plugin-copy": "^2.1.1",
"escape-string-regexp": "^5.0.0",
"moment": "^2.30.1",
"obsidian": "1.10.0",
"obsidian-typings": "4.58.0",
"plur": "^6.0.0",
"pretty-ms": "^9.3.0",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"type-fest": "^5.4.4",
"typescript": "~5.9.3",
"yanki": "^2.0.3"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20.11.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20.19.0"
}
},
"obsidian": {
"author": "Kitschpatrol",
"description": "Sync flashcards from a folder in your vault to Anki. Pure Markdown syntax. No fuss.",
"id": "yanki",
"isDesktopOnly": true,
"minAppVersion": "1.6.5",
"name": "Yanki"
}
}