forked from shuding/next-view-transitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 953 Bytes
/
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
{
"name": "next-view-transitions",
"version": "0.2.0",
"type": "module",
"description": "View Transitions API for Next.js App Router",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": "./dist/index.js",
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch"
},
"keywords": [
"next",
"next.js",
"view transitions",
"route transitions",
"app router"
],
"author": {
"name": "Shu Ding",
"email": "[email protected]",
"url": "https://shud.in"
},
"homepage": "https://next-view-transitions.vercel.app",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.2.78",
"bunchee": "^5.1.2",
"next": "^14.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"packageManager": "[email protected]"
}