Skip to content

Commit a4c8e02

Browse files
committed
chore(deps): updated dependencies
1 parent b78f753 commit a4c8e02

File tree

2 files changed

+949
-792
lines changed

2 files changed

+949
-792
lines changed

package.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,31 @@
11
{
2-
"name": "@webdeveric/dual-ts-package-template",
3-
"description": "",
2+
"name": "commitlint-plugin-cspell",
3+
"description": "Spellcheck your commit messages with CSpell",
44
"version": "0.0.0",
5-
"keywords": [],
5+
"keywords": [
6+
"commitlint",
7+
"commitlintplugin",
8+
"cspell",
9+
"spellcheck"
10+
],
611
"author": "Eric King <eric@webdeveric.com> (https://webdeveric.com/)",
7-
"private": false,
8-
"publishConfig": {
9-
"access": "public"
10-
},
1112
"repository": {
1213
"type": "git",
13-
"url": "https://github.com/webdeveric/dual-ts-package-template.git"
14+
"url": "https://github.com/webdeveric/commitlint-plugin-cspell.git"
1415
},
1516
"bugs": {
16-
"url": "https://github.com/webdeveric/dual-ts-package-template/issues"
17+
"url": "https://github.com/webdeveric/commitlint-plugin-cspell/issues"
1718
},
1819
"license": "MIT",
19-
"packageManager": "pnpm@9.3.0+sha256.e1f9e8d1a16607a46dd3c158b5f7a7dc7945501d1c6222d454d63d033d1d918f",
20+
"packageManager": "pnpm@9.6.0+sha256.dae0f7e822c56b20979bb5965e3b73b8bdabb6b8b8ef121da6d857508599ca35",
2021
"sideEffects": false,
21-
"engines": {
22-
"node": ">=20.0.0"
23-
},
2422
"type": "module",
25-
"main": "./dist/mjs/index.js",
26-
"types": "./dist/types/index.d.ts",
23+
"main": "./dist/index.js",
24+
"types": "./dist/index.d.ts",
2725
"exports": {
2826
".": {
29-
"types": "./dist/types/index.d.ts",
30-
"require": "./dist/cjs/index.js",
31-
"import": "./dist/mjs/index.js"
32-
},
33-
"./*": {
34-
"types": "./dist/types/*.d.ts",
35-
"require": "./dist/cjs/*.js",
36-
"import": "./dist/mjs/*.js"
27+
"types": "./dist/index.d.ts",
28+
"import": "./dist/index.js"
3729
},
3830
"./package.json": "./package.json"
3931
},
@@ -43,9 +35,9 @@
4335
"scripts": {
4436
"clean": "rimraf ./dist/",
4537
"prebuild": "pnpm clean",
46-
"build": "tsc --build tsconfig.cjs.json tsconfig.mjs.json --force",
38+
"build": "tsc --build tsconfig.mjs.json --force",
4739
"validate": "validate-package-exports --check --verify --info",
48-
"postbuild": "echo '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json && echo '{\"type\":\"module\"}' > ./dist/mjs/package.json && pnpm validate",
40+
"postbuild": "pnpm validate",
4941
"typecheck": "tsc --build --verbose",
5042
"lint": "eslint ./*.{js,cjs,mjs,ts,cts,mts} ./src/ ./test/ --ext .ts,.mjs,.cjs",
5143
"test": "vitest",
@@ -56,22 +48,30 @@
5648
"prepare": "husky"
5749
},
5850
"prettier": "@webdeveric/prettier-config",
51+
"dependencies": {
52+
"@commitlint/types": "^19.0.3",
53+
"@webdeveric/utils": "^0.32.0",
54+
"cspell-lib": "^8.12.1"
55+
},
5956
"devDependencies": {
60-
"@types/node": "^20.14.9",
61-
"@vitest/coverage-v8": "^1.6.0",
57+
"@types/node": "^20.14.12",
58+
"@vitest/coverage-v8": "^2.0.4",
6259
"@webdeveric/eslint-config-ts": "^0.8.0",
63-
"@webdeveric/prettier-config": "^0.2.1",
64-
"cspell": "^8.9.1",
60+
"@webdeveric/prettier-config": "^0.3.0",
61+
"cspell": "^8.12.1",
6562
"eslint": "^8.57.0",
6663
"eslint-config-prettier": "^9.1.0",
6764
"eslint-import-resolver-typescript": "^3.6.1",
6865
"eslint-plugin-import": "^2.29.1",
69-
"husky": "^9.0.11",
66+
"husky": "^9.1.3",
7067
"lint-staged": "^15.2.7",
71-
"prettier": "^3.3.2",
72-
"rimraf": "^5.0.7",
73-
"typescript": "^5.5.2",
74-
"validate-package-exports": "^0.5.0",
75-
"vitest": "^1.6.0"
68+
"prettier": "^3.3.3",
69+
"rimraf": "^6.0.1",
70+
"typescript": "^5.5.4",
71+
"validate-package-exports": "^0.6.0",
72+
"vitest": "^2.0.4"
73+
},
74+
"peerDependencies": {
75+
"@commitlint/lint": ">=7.6.0"
7676
}
7777
}

0 commit comments

Comments
 (0)