-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
{
"name": "remark-cjk-friendly",
"version": "1.1.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "LICENSE", "README.md"],
"repository": {
"url": "https://github.com/tats-u/markdown-cjk-friendly"
},
"license": "MIT",
"author": "Tatsunori Uchino <[email protected]> (https://github.com/tats-u)",
"bugs": "https://github.com/tats-u/markdown-cjk-friendly/issues",
"keywords": [
"remark-plugin",
"remark",
"markdown",
"japanese",
"chinese",
"korean",
"cjk",
"mdast",
"unified"
],
"description": "remark plugin to make Markdown emphasis (`**`) in CommonMark (and MDX) more friendly with Chinese, Japanese, and Korean (CJK)",
"sideEffects": false,
"scripts": {
"build:rslib": "rslib build",
"build": "tsup",
"build:lib": "tsup",
"dev:rslib": "rslib build --watch",
"dev": "tsup --watch",
"dev:lib": "tsup --watch",
"test": "vitest run",
"test:lib": "vitest run",
"test:up": "vitest -u",
"test:watch": "vitest watch",
"test:lib:watch": "vitest watch",
"lint:type": "tsc --noEmit"
},
"dependencies": {
"micromark-extension-cjk-friendly": "workspace:^"
},
"devDependencies": {
"@mdx-js/mdx": "^3.1.0",
"rehype-stringify": "10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.0"
},
"peerDependencies": {
"@types/mdast": "^4.0.0",
"unified": "^11.0.0"
},
"peerDependenciesMeta": {
"@types/mdast": {
"optional": true
}
},
"engines": {
"node": ">=16"
}
}