-
Notifications
You must be signed in to change notification settings - Fork 962
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@commitlint/root",
"version": "1.0.0",
"private": true,
"description": "Lint commit messages",
"keywords": [
"changelog",
"check",
"conventional",
"conventional-changelog",
"lint",
"log"
],
"homepage": "https://github.com/conventional-changelog/commitlint#readme",
"bugs": {
"url": "https://github.com/conventional-changelog/commitlint/issues"
},
"license": "MIT",
"author": {
"name": "Mario Nebl",
"email": "hello@herebecode.com"
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/commitlint.git"
},
"type": "module",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"clean": "tsc -b --clean && lerna clean --yes && lerna exec 'git clean -xdf lib' && git clean -xdf node_modules",
"commit": "node @commitlint/prompt-cli/cli.js",
"deps": "lerna run deps",
"pkg": "lerna run pkg",
"docs-dev": "vitepress dev docs",
"docs-build": "vitepress build docs",
"docs-preview": "vitepress preview docs",
"lint": "oxlint",
"lint-fix": "oxlint --fix",
"check-no-focused-tests": "node scripts/check-no-focused-tests.js",
"format": "oxfmt --check --ignore-path .oxfmtignore",
"format-fix": "oxfmt --ignore-path .oxfmtignore",
"publish": "npm whoami && lerna publish --conventional-commits",
"reinstall": "pnpm clean && pnpm install",
"start": "pnpm watch",
"test": "vitest run --coverage",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/config-conventional": "workspace:^",
"@commitlint/config-workspace-scopes": "workspace:^",
"@swc/core": "^1.15.18",
"@types/node": "^22.0.0",
"@vitest/coverage-istanbul": "~4.1.0",
"husky": "^9.1.5",
"lerna": "^9.0.0",
"lint-staged": "17.0.8",
"oxfmt": "^0.56.0",
"oxlint": "^1.58.0",
"typescript": "^6.0.0",
"vite": "^8.0.0",
"vitepress": "^1.3.4",
"vitepress-plugin-llms": "^1.13.1",
"vitepress-plugin-tabs": "^0.9.0",
"vitest": "~4.1.0",
"vitest-environment-commitlint": "workspace:^",
"vue": "^3.5.29"
},
"lint-staged": {
"*.{ts,js}": [
"node scripts/check-no-focused-tests.js",
"oxlint --fix",
"oxfmt --ignore-path .oxfmtignore"
],
"*.{json,yml,md}": [
"oxfmt --ignore-path .oxfmtignore"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-workspace-scopes"
]
},
"engines": {
"node": ">=22.12.0",
"pnpm": ">=11"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"renovate": {
"rangeStrategy": "update-lockfile",
"rebaseWhen": "behind-base-branch",
"minimumReleaseAge": "3 days",
"internalChecksFilter": "strict",
"ignorePaths": [
"**/fixtures/**/package.json"
],
"extends": [
"config:recommended"
],
"semanticCommitType": "chore",
"semanticCommitScope": null,
"ignoreDeps": [
"@commitlint/test",
"@commitlint/utils",
"vitest-environment-commitlint"
],
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"before 5am on monday"
]
},
"packageRules": [
{
"description": "Lock file maintenance is package-manager-controlled and produces upgrade entries without a releaseTimestamp, so the minimumReleaseAge (renovate/stability-days) check can never pass and these PRs sit pending forever. Exempt them; this mirrors Renovate's security:minimumReleaseAgeNpm preset. The 3-day gate still applies to all regular dependency updates.",
"matchUpdateTypes": [
"lockFileMaintenance"
],
"minimumReleaseAge": null
}
]
}
}