-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.05 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
{
"name": "react-transition-progress",
"version": "0.0.4",
"scripts": {
"build": "bunchee",
"prepublish": "pnpm build"
},
"files": [
"dist",
"readme.md"
],
"exports": {
"./next": {
"import": {
"types": "./dist/es/next.d.mts",
"default": "./dist/es/next.mjs"
},
"require": {
"types": "./dist/cjs/next.d.ts",
"default": "./dist/cjs/next.js"
}
},
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"peerDependencies": {
"framer-motion": "*",
"next": "*",
"react": "*"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.2.79",
"bunchee": "^5.1.1",
"framer-motion": "^11.0.24",
"next": "14.2.0-canary.52",
"react": "19.0.0-canary-95e6f032c-20240401",
"typescript": "^5.4.3"
}
}