-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "yanki",
"version": "0.16.1",
"type": "module",
"description": "A CLI tool and TypeScript library for syncing Markdown to Anki flashcards.",
"repository": "github:kitschpatrol/yanki",
"homepage": "https://github.com/kitschpatrol/yanki",
"bugs": "https://github.com/kitschpatrol/yanki/issues",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"license": "MIT",
"packageManager": "pnpm@9.13.2",
"engines": {
"node": "^18.19.0 || >=20.5.0",
"pnpm": ">=9.0.0"
},
"bin": {
"yanki": "dist/bin/cli.js"
},
"main": "./dist/lib/index.js",
"module": "./dist/lib/index.js",
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts"
}
},
"types": "./dist/lib/index.d.ts",
"files": [
"dist/*"
],
"keywords": [
"anki",
"flashcards",
"spaced-repetition",
"anki-connect",
"markdown",
"cli",
"sync",
"npm-package"
],
"scripts": {
"build": "pkgroll --clean-dist --minify",
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
"coverage": "vitest run --coverage",
"fix": "shared-config --fix",
"lint": "shared-config --lint",
"release": "bumpp --commit 'Release: %s' && pnpm run build && pnpm publish --otp $(op read 'op://Personal/Npmjs/one-time password?attribute=otp')",
"test": "vitest"
},
"dependencies": {
"@types/hast": "^3.0.4",
"@types/lodash-es": "^4.17.12",
"@types/mdast": "^4.0.4",
"@types/node": "18.19.0",
"@types/unist": "^3.0.3",
"@types/yargs": "^17.0.33",
"chalk": "^5.3.0",
"entities": "4.5.0",
"globby": "^14.0.2",
"rehype-parse": "^9.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@kitschpatrol/shared-config": "^4.7.12",
"@shikijs/rehype": "^1.23.1",
"@sindresorhus/fnv1a": "^3.1.0",
"@sindresorhus/slugify": "^2.2.1",
"@stdlib/assert-is-absolute-path": "^0.2.2",
"@vitest/browser": "^2.1.5",
"@vitest/coverage-istanbul": "^2.1.5",
"bumpp": "^9.8.1",
"crypto-hash": "^3.1.0",
"deepmerge-ts": "^7.1.3",
"execa": "^9.5.1",
"filenamify": "^6.0.0",
"hast-util-to-text": "^4.0.2",
"linkedom": "^0.18.5",
"mdast-util-from-markdown": "^2.0.2",
"micromark-util-sanitize-uri": "^2.0.1",
"micromark-util-types": "^2.0.1",
"nanoid": "^5.0.8",
"path-browserify-esm": "^1.0.6",
"pkgroll": "^2.5.1",
"playwright": "^1.49.0",
"plur": "^5.1.0",
"pretty-ms": "^9.2.0",
"rehype-format": "^5.0.1",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-denden-ruby": "^0.3.1",
"remark-flexible-markers": "^1.2.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-github-beta-blockquote-admonitions": "^3.1.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"slash": "^5.1.0",
"sort-keys": "^5.1.0",
"strip-ansi": "^7.1.0",
"tsx": "^4.19.2",
"type-fest": "^4.27.0",
"typescript": "^5.6.3",
"unified": "^11.0.5",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0",
"untildify": "^5.0.0",
"vite": "^5.4.11",
"vitest": "^2.1.5",
"yaml": "^2.6.0",
"yanki-connect": "^2.1.8"
},
"publishConfig": {
"access": "public"
}
}