-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1007 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
45
46
{
"name": "next-scroll-restoration",
"version": "0.0.4",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "tsup --config tsup.config.prebuild.ts",
"build": "tsup",
"test": "vitest"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"peerDependencies": {
"next": "*",
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-syntax-decorators": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/types": "^7.25.0"
}
}