-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.37 KB
/
package.json
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
{
"name": "yanki-obsidian",
"version": "1.6.1",
"type": "module",
"description": "An Obsidian plugin that syncs flashcards from a folder in your vault to Anki. Pure Markdown syntax. No fuss.",
"repository": "github:kitschpatrol/yanki-obsidian",
"homepage": "https://github.com/kitschpatrol/yanki-obsidian",
"bugs": "https://github.com/kitschpatrol/yanki-obsidian/issues",
"author": {
"name": "Eric Mika",
"email": "[email protected]",
"url": "https://ericmika.com"
},
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"main": "./dist/main.js",
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"anki",
"flashcards",
"markdown",
"spaced-repetition",
"sync"
],
"scripts": {
"build": "rimraf ./dist && tsc -noEmit -skipLibCheck && tsx ./scripts/build.ts production && pnpm run manifest",
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
"dev": "rimraf ./dist && pnpm run manifest && touch ./dist/.hotreload && tsx ./scripts/build.ts",
"fix": "shared-config --fix",
"lint": "shared-config --lint",
"manifest": "tsx ./scripts/generate-manifest.ts",
"obsidian:link": "pnpm run obsidian:unlink && mkdir -p \"$(pwd)/examples/Demo Vault/.obsidian/plugins\" && ln -s \"$(pwd)/dist\" \"$(pwd)/examples/Demo Vault/.obsidian/plugins/yanki\"",
"obsidian:unlink": "rimraf \"$(pwd)/examples/Demo Vault/.obsidian/plugins/yanki\"",
"release": "pnpm run manifest && bumpp package.json manifest.json --commit 'Release: %s' --tag '%s'",
"yanki:use-local": "pnpm remove yanki && pnpm add -D ../yanki",
"yanki:use-npm": "pnpm remove yanki && pnpm add -D yanki"
},
"devDependencies": {
"@kitschpatrol/shared-config": "^4.7.12",
"@types/node": "18.0.0",
"builtin-modules": "^4.0.0",
"bumpp": "^9.9.2",
"debounce": "^2.2.0",
"entities": "^5.0.0",
"esbuild": "^0.24.2",
"esbuild-plugin-copy": "^2.1.1",
"escape-string-regexp": "^5.0.0",
"obsidian": "latest",
"obsidian-typings": "^2.7.0",
"plur": "^5.1.0",
"pretty-ms": "^9.2.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"type-fest": "^4.30.2",
"typescript": "^5.7.2",
"yanki": "^0.18.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.5.0",
"name": "Yanki"
}
}