-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
152 lines (152 loc) · 4.13 KB
/
deno.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"lock": false,
"name": "@fartlabs/ht",
"version": "0.0.9",
"imports": {
"@mdn/browser-compat-data": "npm:@mdn/browser-compat-data@^5.5.19",
"@std/text": "jsr:@std/text@^1.0.8",
"ts-morph": "npm:ts-morph@^24.0.0"
},
"tasks": {
"generate": "deno run -A cli/codegen.ts",
"molt": "deno run -A jsr:@molt/cli -w"
},
"exports": {
"./cli/codegen": "./cli/codegen.ts",
"./lib/global-attributes": "./lib/global_attributes.ts",
"./lib/render": "./lib/render.ts",
".": "./mod.ts",
"./a": "./a.ts",
"./abbr": "./abbr.ts",
"./acronym": "./acronym.ts",
"./address": "./address.ts",
"./area": "./area.ts",
"./article": "./article.ts",
"./aside": "./aside.ts",
"./audio": "./audio.ts",
"./b": "./b.ts",
"./base": "./base.ts",
"./bdi": "./bdi.ts",
"./bdo": "./bdo.ts",
"./big": "./big.ts",
"./blockquote": "./blockquote.ts",
"./body": "./body.ts",
"./br": "./br.ts",
"./button": "./button.ts",
"./canvas": "./canvas.ts",
"./caption": "./caption.ts",
"./center": "./center.ts",
"./cite": "./cite.ts",
"./code": "./code.ts",
"./col": "./col.ts",
"./colgroup": "./colgroup.ts",
"./data": "./data.ts",
"./datalist": "./datalist.ts",
"./dd": "./dd.ts",
"./del": "./del.ts",
"./details": "./details.ts",
"./dfn": "./dfn.ts",
"./dialog": "./dialog.ts",
"./dir": "./dir.ts",
"./div": "./div.ts",
"./dl": "./dl.ts",
"./dt": "./dt.ts",
"./em": "./em.ts",
"./embed": "./embed.ts",
"./fencedframe": "./fencedframe.ts",
"./fieldset": "./fieldset.ts",
"./figcaption": "./figcaption.ts",
"./figure": "./figure.ts",
"./font": "./font.ts",
"./footer": "./footer.ts",
"./form": "./form.ts",
"./frame": "./frame.ts",
"./frameset": "./frameset.ts",
"./h1": "./h1.ts",
"./h2": "./h2.ts",
"./h3": "./h3.ts",
"./h4": "./h4.ts",
"./h5": "./h5.ts",
"./h6": "./h6.ts",
"./head": "./head.ts",
"./header": "./header.ts",
"./hgroup": "./hgroup.ts",
"./hr": "./hr.ts",
"./html": "./html.ts",
"./i": "./i.ts",
"./iframe": "./iframe.ts",
"./img": "./img.ts",
"./input": "./input.ts",
"./ins": "./ins.ts",
"./kbd": "./kbd.ts",
"./label": "./label.ts",
"./legend": "./legend.ts",
"./li": "./li.ts",
"./link": "./link.ts",
"./main": "./main.ts",
"./map": "./map.ts",
"./mark": "./mark.ts",
"./marquee": "./marquee.ts",
"./menu": "./menu.ts",
"./meta": "./meta.ts",
"./meter": "./meter.ts",
"./nav": "./nav.ts",
"./nobr": "./nobr.ts",
"./noembed": "./noembed.ts",
"./noframes": "./noframes.ts",
"./noscript": "./noscript.ts",
"./object": "./object.ts",
"./ol": "./ol.ts",
"./optgroup": "./optgroup.ts",
"./option": "./option.ts",
"./output": "./output.ts",
"./p": "./p.ts",
"./param": "./param.ts",
"./picture": "./picture.ts",
"./plaintext": "./plaintext.ts",
"./portal": "./portal.ts",
"./pre": "./pre.ts",
"./progress": "./progress.ts",
"./q": "./q.ts",
"./rb": "./rb.ts",
"./rp": "./rp.ts",
"./rt": "./rt.ts",
"./rtc": "./rtc.ts",
"./ruby": "./ruby.ts",
"./s": "./s.ts",
"./samp": "./samp.ts",
"./script": "./script.ts",
"./search": "./search.ts",
"./section": "./section.ts",
"./select": "./select.ts",
"./slot": "./slot.ts",
"./small": "./small.ts",
"./source": "./source.ts",
"./span": "./span.ts",
"./strike": "./strike.ts",
"./strong": "./strong.ts",
"./style": "./style.ts",
"./sub": "./sub.ts",
"./summary": "./summary.ts",
"./sup": "./sup.ts",
"./table": "./table.ts",
"./tbody": "./tbody.ts",
"./td": "./td.ts",
"./template": "./template.ts",
"./textarea": "./textarea.ts",
"./tfoot": "./tfoot.ts",
"./th": "./th.ts",
"./thead": "./thead.ts",
"./time": "./time.ts",
"./title": "./title.ts",
"./tr": "./tr.ts",
"./track": "./track.ts",
"./tt": "./tt.ts",
"./u": "./u.ts",
"./ul": "./ul.ts",
"./var": "./var.ts",
"./video": "./video.ts",
"./wbr": "./wbr.ts",
"./xmp": "./xmp.ts"
}
}