-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "@somehow-digital/typescript-config",
"type": "module",
"version": "2.0.0",
"packageManager": "pnpm@10.33.4",
"description": "Shared `typescript` configurations for `somehow.digital` projects.",
"license": "MIT",
"repository": "somehow-digital/typescript-config",
"exports": {
".": "./configuration/basic.json",
"./*": "./configuration/*.json"
},
"files": [
"./configuration/"
],
"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": {
"typescript": "^5.8.2 || ^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^21.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",
"concurrently": "^9.0.0",
"cspell": "^10.0.0",
"eslint": "^10.0.0",
"husky": "^9.0.11",
"knip": "^6.0.0",
"lint-staged": "^17.0.0",
"semantic-release": "^25.0.0",
"typescript": "^6.0.0"
}
}