-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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": "micromark-extension-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": [
"micromark-extension",
"micromark",
"markdown",
"japanese",
"chinese",
"korean",
"cjk"
],
"description": "micromark extension to make Markdown emphasis (`**`) in CommonMark 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",
"bench": "vitest bench --run",
"bench:watch": "vitest bench",
"lint:type": "tsc --noEmit"
},
"dependencies": {
"devlop": "^1.0.0",
"micromark-util-chunked": "^2.0.0",
"micromark-util-resolve-all": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-extension-cjk-friendly-util": "workspace:^"
},
"devDependencies": {
"micromark": "^4.0.1",
"micromark-extension-gfm": "^3.0.0",
"micromark-util-types": "^2.0.0"
},
"peerDependencies": {
"micromark": "^4.0.0",
"micromark-util-types": "^2.0.0"
},
"peerDependenciesMeta": {
"micromark-util-types": {
"optional": true
}
},
"engines": {
"node": ">=16"
}
}