-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.09 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
{
"name": "react-mfm",
"description": "MFM for React",
"version": "0.5.4",
"author": "YamaD <[email protected]>",
"dependencies": {
"@twemoji/api": "15.1.0",
"jotai": ">=2.2.0 <3",
"katex": "0.16.11",
"mfm-js": "0.24.0",
"shiki": "1.12.1"
},
"devDependencies": {
"@microsoft/api-extractor": "7.47.5",
"@types/katex": "0.16.7",
"@types/react": "18.3.3",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"tsup": "8.2.4",
"typescript": "5.4.2"
},
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"license": "WTFPL",
"main": "./dist/index.js",
"peerDependencies": {
"react": ">=17.0.0"
},
"repository": "github:yamader/react-mfm",
"scripts": {
"build": "tsup --minify --experimental-dts",
"check": "tsc",
"dev": "tsup --watch",
"fmt": "prettier -w ."
},
"tsup": {
"entry": [
"src"
],
"format": "esm",
"sourcemap": true,
"splitting": false,
"clean": true
},
"type": "module",
"types": "./dist/index.d.ts"
}