-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "@somehow-digital/commitlint-plugin-spellcheck",
"type": "module",
"version": "1.0.1",
"packageManager": "pnpm@10.29.3",
"description": "Spellcheck commit messages via `cspell`.",
"license": "MIT",
"repository": "somehow-digital/commitlint-plugin-spellcheck",
"keywords": [
"commitlint",
"commitlintplugin"
],
"exports": {
".": "./src/index.js"
},
"files": [
"./src/"
],
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"prepare": "husky",
"lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'",
"lint:eslint": "eslint .",
"lint:cspell": "cspell --no-progress --no-summary --no-must-find-files .",
"lint:knip": "knip --no-progress",
"fix": "concurrently --group --prefix-colors 'auto' 'pnpm:fix:*'",
"fix:eslint": "eslint --fix .",
"fix:knip": "knip --no-progress --fix"
},
"peerDependencies": {
"cspell": "^8.8.1 || ^9.0.0"
},
"dependencies": {
"cspell-lib": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@somehow-digital/commitlint-config": "^1.0.0",
"@somehow-digital/cspell-dictionary": "^2.0.0",
"@somehow-digital/eslint-config": "^5.0.0",
"@somehow-digital/semantic-release-config": "^2.0.0",
"@types/node": "^24.0.0",
"concurrently": "^9.0.0",
"cspell": "^9.0.0",
"eslint": "^10.0.0",
"husky": "^9.0.11",
"knip": "^5.16.0",
"lint-staged": "^16.0.0",
"semantic-release": "^25.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"oxc-resolver"
]
}
}