-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.14 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@frfla/react-md-renderer",
"version": "0.250829.0",
"description": "markdown renderer with react",
"scripts": {
"build": "parcel build && tsc --emitDeclarationOnly --declaration --outDir dist/types",
"watch": "parcel watch",
"publish": "npm publish --access=public"
},
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md",
"README.ko.md"
],
"keywords": [
"markdown",
"react markdown",
"react"
],
"author": "vvyre <seung.yoon.yu@gmail.com>",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@frfla/laser": "^0.1.0",
"@frfla/react-hooks": "^0.10.2",
"react-markdown": "^9.0.3",
"rehype-highlight": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@parcel/bundler-library": "^2.13.3",
"@parcel/config-default": "^2.13.3",
"@parcel/packager-ts": "2.13.3",
"@parcel/transformer-typescript-types": "2.13.3",
"@types/node": "^20.17.16",
"@types/react": "^19.0.0",
"@types/react-router-dom": "^5.3.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"parcel": "^2.13.3",
"parcel-resolver-tspaths": "^0.0.9",
"prettier": "^3.2.5",
"react": "^19.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": ">=19"
},
"prettier": {
"tabWidth": 2,
"printWidth": 90,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
},
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
}