-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.76 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
{
"name": "react-render-markup",
"version": "3.6.3",
"description": "Safely parse HTML, SVG and MathML into React elements.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-render-markup.cjs",
"module": "./dist/react-render-markup.js",
"exports": {
".": {
"import": "./dist/react-render-markup.js",
"require": "./dist/react-render-markup.cjs"
}
},
"sideEffects": false,
"scripts": {
"benchmark": "node benchmark",
"build": "vite build",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "npm run build && husky",
"preversion": "npm run lint && npm run test",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobbuck/react-render-markup.git"
},
"keywords": [
"html",
"markup",
"react",
"render"
],
"author": "Jacob Buck <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobbuck/react-render-markup/issues"
},
"homepage": "https://github.com/jacobbuck/react-render-markup#readme",
"dependencies": {
"css-to-style": "^1.4.0",
"dom-parse": "^3.2.1",
"prop-types": "^15.8.1",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-vitest": "^0.3.22",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0",
"tinybench": "^2.5.0",
"vite": "^5.1.5",
"vitest": "^1.3.1"
},
"peerDependencies": {
"react": "^16.6.0 || 17 || 18"
}
}