-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.61 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
{
"name": "query-state",
"version": "1.0.0",
"description": "Lightweight React hook for managing URL query parameters with granular re-renders",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "pnpm build && pnpm changeset:publish",
"release:check": "pnpm build && pnpm test && pnpm lint && pnpm type-check",
"version:patch": "changeset version",
"version:minor": "changeset version",
"version:major": "changeset version"
},
"peerDependencies": {
"next": "^14.0.0 || ^15.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"keywords": [
"react",
"hooks",
"query-string",
"url",
"next.js",
"routing",
"state-management"
],
"author": "Pedro5g",
"license": "ISC",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.0",
"prettier": "^3.6.2",
"turbo": "^2.5.8"
}
}