-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 960 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 960 Bytes
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
{
"name": "mono-jsx",
"version": "0.10.0-beta.22",
"description": "`<html>` as a `Response` (Yet another JSX runtime for server-side rendering).",
"type": "module",
"main": "./index.mjs",
"module": "./index.mjs",
"types": "./types/index.d.ts",
"bin": {
"mono-jsx": "bin/mono-jsx"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./index.mjs",
"node": "./index.mjs"
},
"./jsx-runtime": {
"types": "./types/jsx-runtime.d.ts",
"import": "./jsx-runtime.mjs",
"node": "./jsx-runtime.mjs"
},
"./jsx-dev-runtime": {
"types": "./types/jsx-runtime.d.ts",
"import": "./jsx-runtime.mjs",
"node": "./jsx-runtime.mjs"
}
},
"scripts": {
"prepublishOnly": "deno task build"
},
"files": [
"./*.mjs",
"./types/*.d.ts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ije/mono-jsx.git"
}
}