-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
{
"name": "marked-github-emoji",
"version": "1.0.2",
"description": "A lightweight, zero-dependency marked extension that renders GitHub emoji shortcodes (:smile:) as native emoji",
"repository": {
"type": "git",
"url": "git+https://github.com/stamat/marked-github-emoji.git"
},
"homepage": "https://github.com/stamat/marked-github-emoji#readme",
"bugs": {
"url": "https://github.com/stamat/marked-github-emoji/issues"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./emojis.json": "./emojis.json"
},
"files": [
"index.js",
"index.d.ts",
"emojis.js",
"emojis.json"
],
"scripts": {
"generate-dict": "node script/generate-dict.js",
"lint": "eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"marked",
"marked-extension",
"emoji",
"github",
"shortcode",
"gemoji",
"markdown"
],
"author": "Stamat <@stamat> (http://stamat.info)",
"license": "MIT",
"peerDependencies": {
"marked": ">=4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"jest": "^30.4.2",
"marked": "^18.0.6"
}
}