-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "use-justified-layout",
"version": "0.0.6",
"description": "Flickr's justified-layout in a React hook",
"author": "Alan Morales",
"repository": {
"type": "git",
"url": "https://github.com/alanmoraales/use-justified-layout.git"
},
"homepage": "https://github.com/alanmoraales/use-justified-layout#readme",
"keywords": [
"react",
"flickr",
"justified layout",
"gallery",
"hook",
"hooks",
"layouts"
],
"license": "ISC",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"justified-layout": "^4.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/justified-layout": "^4.0.1",
"@types/node": "^16.4.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"esbuild": "^0.12.16",
"typescript": "^4.3.2",
"vite": "^2.4.4",
"vite-plugin-dts": "^0.5.3"
},
"files": [
"dist"
],
"main": "./dist/use-justified-layout.umd.js",
"module": "./dist/use-justified-layout.es.js",
"exports": {
".": {
"import": "./dist/use-justified-layout.es.js",
"require": "./dist/use-justified-layout.umd.js"
}
},
"types": "./dist/lib/main.d.ts"
}