-
Notifications
You must be signed in to change notification settings - Fork 909
/
package.json
112 lines (112 loc) · 2.92 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
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
{
"name": "@commitlint/root",
"description": "Lint commit messages",
"private": true,
"type": "module",
"version": "1.0.0",
"license": "MIT",
"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": "eslint",
"lint-fix": "eslint --fix",
"format": "prettier **/*.{ts,js,json,yml,md} --check",
"format-fix": "prettier **/*.{ts,js,json,yml,md} --write",
"publish": "lerna publish --conventional-commits",
"reinstall": "yarn clean && yarn install",
"start": "yarn watch",
"test": "cross-env HOME=$PWD LANG=en_US.UTF-8 NO_COLOR=1 vitest run --coverage",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"lint-staged": {
"*.{ts,js,json,yml,md}": [
"prettier --write"
]
},
"renovate": {
"rangeStrategy": "update-lockfile",
"ignorePaths": [
"**/fixtures/**/package.json"
],
"extends": [
"config:base",
":semanticCommitType(chore)",
":semanticCommitScopeDisabled"
],
"ignoreDeps": [
"@commitlint/test",
"@commitlint/test-environment",
"@commitlint/utils"
]
},
"workspaces": [
"@alias/*",
"@commitlint/*",
"@packages/*"
],
"engines": {
"node": ">=v18"
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/commitlint.git"
},
"bugs": {
"url": "https://github.com/conventional-changelog/commitlint/issues"
},
"homepage": "https://github.com/conventional-changelog/commitlint#readme",
"keywords": [
"conventional",
"conventional-changelog",
"log",
"changelog",
"lint",
"check"
],
"author": {
"name": "Mario Nebl",
"email": "[email protected]"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@lerna/project": "^6.0.0",
"@swc/core": "^1.7.23",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-istanbul": "^2.0.5",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.2",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lerna": "^6.0.0",
"lint-staged": "15.2.10",
"prettier": "^2.8.8",
"typescript": "^5.2.2",
"vitepress": "^1.3.4",
"vitepress-plugin-tabs": "^0.5.0",
"vitest": "^2.0.5",
"vue": "^3.5.0"
}
}