-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "@somehow-digital/cspell-dictionary",
"description": "Shared `cspell` dictionary for `somehow.digital` projects.",
"version": "2.0.0",
"type": "module",
"license": "MIT",
"repository": "somehow-digital/cspell-dictionary",
"packageManager": "[email protected]",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"prepare": "husky",
"lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'",
"lint:prettier": "prettier --check '**/*.{md,json,yml,yaml,js}'",
"lint:cspell": "cspell --no-progress --no-summary --no-must-find-files '**/*.*'",
"fix": "concurrently --group --prefix-colors 'auto' 'pnpm:fix:*'",
"fix:prettier": "prettier --write '**/*.{md,json,yml,yaml,js}'"
},
"exports": {
".": "./dictionary/cspell-ext.json"
},
"files": [
"./dictionary/"
],
"peerDependencies": {
"cspell": "^8.13.0"
},
"dependencies": {
"@cspell/dict-de-de": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@somehow-digital/commitlint-config": "^1.0.0",
"@somehow-digital/prettier-config": "^2.0.0",
"concurrently": "^9.0.0",
"cspell": "^8.13.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "3.5.0",
"semantic-release": "^24.2.0"
}
}