forked from cliid/rehype-twemojify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "rehype-twemojify",
"version": "3.1.0",
"type": "module",
"keywords": [
"remark",
"emoji",
"twemoji",
"javascript",
"js",
"typescript",
"ts"
],
"exports": {
".": "./index.js",
"./index": "./index.js",
"./index.js": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"generate": "node generate-html.js"
},
"repository": "[email protected]:cliid/rehype-twemojify.git",
"author": "cliid <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/hast": "^2.3.4",
"@types/twemoji": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rehype": "^12.0.0",
"rehype-format": "^4.0.0",
"rehype-parse": "^8.0.3",
"rehype-preset-minify": "^6.0.0",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.0.0",
"to-vfile": "^7.2.2",
"typescript": "^4.4.4",
"unist-util-remove-position": "^4.0.1",
"vfile-reporter": "^7.0.2"
},
"dependencies": {
"emoji-regex": "^10.0.0",
"grapheme-splitter": "^1.0.4",
"hast": "^1.0.0",
"twemoji": "^13.1.0",
"unified": "^10.1.0",
"unist-util-map": "^3.0.0"
}
}