-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
{
"author": {
"name": "l-you",
"email": "[email protected]",
"url": "https://github.com/l-you"
},
"version": "0.9.9",
"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": "gbuild . && tsc --emitDeclarationOnly",
"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": "eslint .",
"lint:fix": "eslint --fix ."
},
"bugs": {
"url": "https://github.com/RevoTale/next-scroll-restorer/issues"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@playwright/test": "^1.44.1",
"@types/node": "^22.10.5",
"@types/react": "^19.0",
"changeset": "^0.2.6",
"eslint": "^9.0",
"grisaia-package-builder": "^0.1.17",
"typescript": "^5.4.5",
"eslint-config-love": "^114.0.0"
},
"peerDependencies": {
"next": "^14.0 || ^15.0",
"react": "^18.0 || ^19.0"
},
"packageManager": "[email protected]"
}