-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "@uiw/react-hr",
"version": "1.0.1",
"description": "A React divider component built on the native hr element.",
"homepage": "https://uiwjs.github.io/react-hr/",
"author": "kenny wang <wowohoo@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-hr.git"
},
"type": "module",
"main": "./dist/react-hr.cjs",
"module": "./dist/react-hr.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-hr.js",
"require": "./dist/react-hr.cjs"
}
},
"scripts": {
"dev": "vite --config vite.site.config.ts",
"build": "npm run build:lib && npm run build:site",
"build:lib": "vite build --config vite.config.ts && tsc -p tsconfig.build.json",
"build:site": "vite build --config vite.site.config.ts",
"analyze:lib": "vite build --config vite.config.ts --mode analyze",
"analyze:site": "vite build --config vite.site.config.ts --mode analyze",
"preview": "vite preview --config vite.site.config.ts"
},
"keywords": [
"react",
"hr",
"divider",
"separator"
],
"license": "MIT",
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@uiw/react-github-corners": "^1.5.16",
"@uiw/react-markdown-preview": "^5.2.0",
"@vitejs/plugin-react": "^5.0.0",
"@wcj/dark-mode": "^1.1.0",
"react": "^19.0.0",
"react-code-preview-layout": "^3.1.5",
"react-dom": "^19.0.0",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "^5.9.0",
"vite": "^7.0.0"
}
}