-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "microjsx",
"version": "0.1.0",
"support": "unstable",
"description": "Minimal JSX templating for safe HTML strings",
"keywords": [
"jsx",
"html",
"template",
"templating",
"ssg",
"ssr"
],
"homepage": "https://github.com/explodingcamera/esm/tree/main/packages/microjsx",
"repository": {
"type": "git",
"url": "git+https://github.com/explodingcamera/esm.git",
"directory": "packages/microjsx"
},
"license": "MIT",
"author": "Henry Gressmann <npm@henrygressmann.de>",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.mts",
"import": "./dist/jsx-runtime.mjs",
"default": "./dist/jsx-runtime.mjs"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-dev-runtime.d.mts",
"import": "./dist/jsx-dev-runtime.mjs",
"default": "./dist/jsx-dev-runtime.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"source": "lib/index.ts",
"files": [
"dist",
"lib/elements.ts",
"lib/index.ts",
"lib/jsx-dev-runtime.ts",
"lib/jsx-runtime.ts",
"lib/node.ts",
"lib/types.ts"
],
"scripts": {
"prepublishOnly": "bun run --cwd ../.. build"
},
"tsdown": {
"entry": [
"lib/index.ts",
"lib/jsx-runtime.ts",
"lib/jsx-dev-runtime.ts"
]
},
"dependencies": {
"csstype": "^3.2.3"
},
"engines": {
"node": ">=22.0.0"
}
}