-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.29 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
123
124
125
126
127
128
129
130
131
132
{
"name": "yanki",
"version": "0.18.10",
"description": "A CLI tool and TypeScript library for syncing Markdown to Anki flashcards.",
"keywords": [
"anki",
"flashcards",
"spaced-repetition",
"anki-connect",
"markdown",
"cli",
"sync",
"npm-package"
],
"homepage": "https://github.com/kitschpatrol/yanki",
"bugs": "https://github.com/kitschpatrol/yanki/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitschpatrol/yanki.git"
},
"license": "MIT",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"type": "module",
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts"
}
},
"main": "./dist/lib/index.js",
"module": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"bin": {
"yanki": "dist/bin/cli.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "pkgroll --clean-dist --minify --tsconfig tsconfig.build.json",
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
"coverage": "vitest run --coverage",
"fix": "kpi fix",
"lint": "kpi 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.84",
"@types/unist": "^3.0.3",
"@types/yargs": "^17.0.33",
"chalk": "^5.4.1",
"entities": "4.5.0",
"globby": "^14.1.0",
"rehype-parse": "^9.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@kitschpatrol/shared-config": "^5.4.0",
"@shikijs/rehype": "^3.2.1",
"@sindresorhus/fnv1a": "^3.1.0",
"@sindresorhus/slugify": "^2.2.1",
"@stdlib/assert-is-absolute-path": "^0.2.2",
"@vitest/browser": "^3.0.9",
"@vitest/coverage-istanbul": "^3.0.9",
"@vitest/coverage-v8": "^3.0.9",
"bumpp": "^10.1.0",
"crypto-hash": "^3.1.0",
"deepmerge-ts": "^7.1.5",
"execa": "^9.5.2",
"filenamify": "^6.0.0",
"hast-util-to-text": "^4.0.2",
"linkedom": "^0.18.9",
"mdast-util-from-markdown": "^2.0.2",
"micromark-util-sanitize-uri": "^2.0.1",
"micromark-util-types": "^2.0.2",
"nanoid": "^5.1.5",
"path-browserify-esm": "^1.0.6",
"pkgroll": "^2.12.1",
"playwright": "^1.51.1",
"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.1",
"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.3",
"type-fest": "^4.38.0",
"typescript": "~5.8.2",
"unified": "^11.0.5",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0",
"untildify": "^5.0.0",
"vite": "^6.2.3",
"vitest": "^3.0.9",
"yaml": "^2.7.1",
"yanki-connect": "^2.2.1"
},
"packageManager": "pnpm@10.7.0",
"engines": {
"node": "^18.15.0 || >=20.11.0"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw",
"puppeteer"
]
}
}