-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "react-highlight-code",
"private": false,
"version": "0.0.2",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"license": "MIT",
"main": "./dist/react-highlight-code.umd.js",
"module": "./dist/react-highlight-code.es.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/react-highlight-code.es.js",
"require": "./dist/react-highlight-code.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "https://github.com/F-one-1/react-highlight-code.git"
},
"homepage": "https://github.com/F-one-1/react-highlight-code",
"dependencies": {
"highlight.js": "^11.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"classnames": "^2.3.1",
"react-highlight-code": "^0.0.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.0",
"vite": "^2.9.9"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"keywords": [
"highlight",
"react",
"component",
"highlight.js"
]
}