-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "@14islands/react-page-transitions",
"version": "1.3.1",
"description": "Framework agnostic page transitions for react",
"repository": "git@github.com:14islands/react-page-transitions.git",
"author": "David Lindkvist <david@14islands.com>",
"license": "MIT",
"private": false,
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/pagetransitions.cjs",
"default": "./dist/pagetransitions.modern.js"
},
"main": "./dist/pagetransitions.cjs",
"module": "./dist/pagetransitions.module.js",
"unpkg": "./dist/pagetransitions.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle --globals zustand/vanilla=zustand/vanilla,react/jsx-runtime=jsx --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"dev": "microbundle watch"
},
"devDependencies": {
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5",
"@types/react-transition-group": "^4.4.4",
"microbundle": "^0.15.0"
},
"peerDependencies": {
"react": ">=18.0",
"react-dom": ">=18.0"
},
"dependencies": {
"react-transition-group": "^4.4.5",
"zustand": "^3.7.2"
}
}