-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"author": {
"name": "l-you",
"email": "l-you@revotale.com",
"url": "https://github.com/l-you"
},
"version": "0.11.1",
"name": "next-scroll-restorer",
"main": "src/index.ts",
"license": "MIT",
"private": false,
"sideEffects": false,
"publishConfig": {
"provenance": true,
"access": "public",
"main": "index.js",
"directory": "dist",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RevoTale/next-scroll-restorer.git"
},
"type": "module",
"scripts": {
"build": "tsup && cp package.json README.md LICENSE dist/",
"tsc": "tsc --noEmit",
"changeset:version": "changeset version && git add --all",
"changeset:publish": "changeset publish",
"prepare": "pnpm build",
"test": "pnpm lint && pnpm tsc && pnpm unit",
"unit": "playwright test",
"lint": "pnpx @biomejs/biome check",
"lint:fix": "pnpx @biomejs/biome format --write"
},
"bugs": {
"url": "https://github.com/RevoTale/next-scroll-restorer/issues"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/cli": "^2.30.0",
"@playwright/test": "1.58.2",
"@swc/core": "^1.15.18",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"changeset": "^0.2.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"@playwright/test": "1.58.2"
}
},
"peerDependencies": {
"next": "^15.0 || ^16.0",
"react": "^19.0"
},
"packageManager": "pnpm@10.32.1"
}