-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.57 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
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
{
"name": "react-marked-renderer",
"type": "module",
"version": "2.0.1",
"description": "React Marked Renderer - React components for the marked library",
"repository": "https://github.com/mlaursen/react-marked-renderer",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"cli": "ts-node -P tsconfig.node.json --swc",
"create-env": "pnpm run cli scripts/createEnv.ts",
"format": "prettier --write \"**/*.{ts,tsx,scss,js,jsx,md,yml,json}\"",
"api-docs": "pnpm run cli scripts/typedoc.ts",
"release": "pnpm run cli scripts/release.ts",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"typecheck": "tsc -p tsconfig.check.json",
"test": "jest",
"test-cy": "cypress open",
"dev": "next dev",
"start": "next start",
"build-website": "next build",
"build": "npm-run-all lint typecheck api-docs create-env build-website"
},
"engines": {
"pnpm": ">=8"
},
"engineStrict": true,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist/",
"src/"
],
"bugs": {
"url": "https://github.com/mlaursen/react-marked-renderer/issues"
},
"keywords": [
"github markdown",
"markdown",
"marked",
"component",
"react"
],
"sideEffects": false,
"dependencies": {
"@types/marked": "^4.0.1",
"marked": "^4.0.10"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@jest/types": "^29.6.3",
"@mlaursen/eslint-config": "^3.0.0",
"@next/eslint-plugin-next": "^14.0.1",
"@octokit/core": "^5.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@swc/core": "^1.3.95",
"@swc/jest": "^0.2.29",
"@testing-library/cypress": "^10.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/inquirer": "^9.0.6",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@types/prismjs": "^1.26.2",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"classnames": "^2.3.2",
"cypress": "^13.4.0",
"cypress-file-upload": "^5.0.8",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"filesize": "^10.1.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^9.2.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.0.2",
"next": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-md": "^5.1.5",
"rimraf": "^5.0.5",
"rollup": "^4.2.0",
"sass": "^1.69.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">= 16.14"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
},
"lint-staged": {
"**/*.{ts,tsx,scss,js,jsx,md,yml,json}": [
"prettier --write"
]
}
}