-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1016 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1016 Bytes
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
{
"name": "@react-visual/react",
"version": "1.5.4",
"description": "Image and video renderer for React projects",
"author": "Bukwild <info@bukwild.com>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "vite build",
"test": "cypress run --component",
"typecheck": "tsc --noEmit",
"demo": "vite --config vite.demo.config.ts",
"demo:build": "vite build --config vite.demo.config.ts"
},
"dependencies": {
"@react-hook/media-query": "^1.1.1",
"react-intersection-observer": "^9"
},
"peerDependencies": {
"react": "^18"
},
"devDependencies": {
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.3.2",
"cypress": "^13.13.3",
"react": "^18",
"react-dom": "^18.2.0",
"typescript": "^5.1.6",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3"
},
"publishConfig": {
"access": "public"
}
}