-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 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
68
69
70
71
72
73
74
75
76
{
"author": {
"name": "l-you",
"email": "l-you@revotale.com",
"url": "https://github.com/l-you"
},
"version": "1.0.4",
"name": "next-navigation-utils",
"main": "src/index.ts",
"license": "MIT",
"private": false,
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
},
"./client": {
"types": "./client.d.ts",
"import": "./client.js",
"require": "./client.cjs"
},
"./parameters": {
"types": "./parameters/index.d.ts",
"import": "./parameters/index.js",
"require": "./parameters/index.cjs"
}
},
"publishConfig": {
"provenance": true,
"access": "public",
"main": "index.js",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RevoTale/next-navigation-utils.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 -x",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"bugs": {
"url": "https://github.com/RevoTale/next-navigation-utils/issues"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@playwright/test": "^1.55.1",
"@types/node": "^24.6.0",
"@types/react": "^19.1.14",
"changeset": "^0.2.6",
"eslint": "^9.36.0",
"eslint-config-love": "^137.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"typescript": "^5.9.2"
},
"peerDependencies": {
"next": "^14.0 || ^15.0 || ^16.0.0",
"react": "^18.0 || ^19.0"
},
"packageManager": "pnpm@10.32.1",
"dependencies": {
"tsup": "^8.5.0",
"use-debounce": "^10.0.6"
}
}