-
-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.12 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
77
78
79
80
81
82
{
"name": "nuqs-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "François Best",
"email": "contact@francoisbest.com",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/nuqs"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test --log-order=stream",
"verify": "packages/scripts/verify-release/verify.production.ts",
"// setup:hooks": "Opt-in per clone (not on install). include.path resolves relative to .git/config, so ../ is the repo root (the tracked .gitconfig hooks file); --replace-all is idempotent and leaves any other includes untouched",
"setup:hooks": "git config --local --replace-all include.path ../.gitconfig '^\\.\\./\\.gitconfig$'",
"typegen": "pnpm run --filter \"e2e-*\" typegen && pnpm run --filter \"examples-trpc\" typegen",
"lint": "pnpm run typegen && pnpm run -w --parallel --stream '/^lint:/'",
"lint:knip": "knip",
"lint:prettier": "prettier --check ./packages/nuqs",
"lint:sherif": "sherif"
},
"devDependencies": {
"@commitlint/config-conventional": "^21.2.0",
"commitlint": "^21.2.1",
"knip": "catalog:knip",
"prettier": "3.9.5",
"publint": "^0.3.21",
"sherif": "^1.13.0",
"turbo": "^2.10.5",
"typescript": "catalog:typescript"
},
"packageManager": "pnpm@11.0.9",
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always",
"sentence-case"
],
"body-leading-blank": [
2,
"always",
true
]
}
}
}