-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "markdown-it-typograf",
"version": "0.1.2",
"scripts": {
"dev": "bun test --watch",
"dev:docs": "bunx [email protected] --port=3000 --no-browser ./docs",
"format": "bun prettier --write .",
"test": "bun prettier --check . && bun tsc --noEmit && bun test --bail && bunx size-limit",
"build:dts": "bun tsc --project ./tsconfig.build.json --declaration --emitDeclarationOnly"
},
"peerDependencies": {
"markdown-it": "^14.1.0",
"typograf": "^7.4.1"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.4",
"@types/bun": "^1.1.8",
"@types/markdown-it": "^14.1.2",
"markdown-it": "^14.1.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"main": "./index.js",
"files": [
"./index.js",
"./index.d.ts"
],
"size-limit": [
{
"limit": "1000 B",
"path": "./index.js"
}
],
"prettier": {},
"type": "module",
"description": "Typograf integration for markdown-it",
"keywords": [
"markdown-it-plugin",
"typograf"
],
"homepage": "https://ceigh.github.io/markdown-it-typograf",
"license": "MIT",
"author": "Artem Lebzak (https://ceigh.com)",
"repository": "ceigh/markdown-it-typograf"
}