|
1 | 1 | { |
2 | 2 | "name": "@somehow-digital/commitlint-plugin-spellcheck", |
3 | | - "description": "Spellcheck commit messages via `cspell`.", |
4 | | - "version": "1.0.1", |
5 | 3 | "type": "module", |
| 4 | + "version": "1.0.1", |
| 5 | + "packageManager": "pnpm@10.13.1", |
| 6 | + "description": "Spellcheck commit messages via `cspell`.", |
6 | 7 | "license": "MIT", |
7 | 8 | "repository": "somehow-digital/commitlint-plugin-spellcheck", |
8 | | - "packageManager": "pnpm@10.13.1", |
9 | 9 | "keywords": [ |
10 | 10 | "commitlint", |
11 | 11 | "commitlintplugin" |
12 | 12 | ], |
| 13 | + "exports": { |
| 14 | + ".": "./src/index.js" |
| 15 | + }, |
| 16 | + "files": [ |
| 17 | + "./src/" |
| 18 | + ], |
13 | 19 | "engines": { |
14 | 20 | "node": ">=22", |
15 | 21 | "pnpm": ">=10" |
16 | 22 | }, |
17 | 23 | "scripts": { |
18 | 24 | "prepare": "husky", |
19 | 25 | "lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'", |
20 | | - "lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}'", |
21 | | - "lint:prettier": "prettier --check '**/*.{md,json,yml,yaml}'", |
22 | | - "lint:cspell": "cspell --no-progress --no-summary --no-must-find-files '**/*.*'", |
| 26 | + "lint:eslint": "eslint .", |
| 27 | + "lint:cspell": "cspell --no-progress --no-summary --no-must-find-files .", |
23 | 28 | "lint:knip": "knip --no-progress", |
24 | 29 | "fix": "concurrently --group --prefix-colors 'auto' 'pnpm:fix:*'", |
25 | | - "fix:eslint": "eslint --fix '**/*.{js,jsx,ts,tsx}'", |
26 | | - "fix:prettier": "prettier --write '**/*.{md,json,yml,yaml}'", |
| 30 | + "fix:eslint": "eslint --fix .", |
27 | 31 | "fix:knip": "knip --no-progress --fix" |
28 | 32 | }, |
29 | | - "exports": { |
30 | | - ".": "./src/index.js" |
31 | | - }, |
32 | | - "files": [ |
33 | | - "./src/" |
34 | | - ], |
35 | 33 | "peerDependencies": { |
36 | 34 | "cspell": "^8.8.1 || ^9.0.0" |
37 | 35 | }, |
|
42 | 40 | "@commitlint/cli": "^19.3.0", |
43 | 41 | "@somehow-digital/commitlint-config": "^1.0.0", |
44 | 42 | "@somehow-digital/cspell-dictionary": "^2.0.0", |
45 | | - "@somehow-digital/eslint-config": "^3.0.0", |
46 | | - "@somehow-digital/prettier-config": "^3.0.0", |
| 43 | + "@somehow-digital/eslint-config": "^4.0.0", |
47 | 44 | "@somehow-digital/semantic-release-config": "^2.0.0", |
48 | 45 | "@types/node": "^22.9.0", |
49 | 46 | "concurrently": "^9.0.0", |
|
52 | 49 | "husky": "^9.0.11", |
53 | 50 | "knip": "^5.16.0", |
54 | 51 | "lint-staged": "^16.0.0", |
55 | | - "prettier": "^3.2.5", |
56 | 52 | "semantic-release": "^24.2.0" |
| 53 | + }, |
| 54 | + "pnpm": { |
| 55 | + "onlyBuiltDependencies": [ |
| 56 | + "oxc-resolver" |
| 57 | + ] |
57 | 58 | } |
58 | 59 | } |
0 commit comments