|
21 | 21 | "docs": "typedoc-json-parser",
|
22 | 22 | "test": "yarn gyp:configure && yarn gyp:build && vitest run",
|
23 | 23 | "lint": "eslint src tests --ext ts --fix",
|
| 24 | + "prettier": "prettier --ignore-path=.prettierignore", |
24 | 25 | "prepack": "yarn build",
|
25 | 26 | "ts:build": "tsc -b src",
|
26 | 27 | "ts:esm": "gen-esm-wrapper dist/index.js dist/index.mjs",
|
|
52 | 53 | "@commitlint/config-conventional": "^17.6.7",
|
53 | 54 | "@favware/cliff-jumper": "^2.1.1",
|
54 | 55 | "@favware/npm-deprecate": "^1.0.7",
|
55 |
| - "@sapphire/eslint-config": "^4.4.3", |
56 |
| - "@sapphire/prettier-config": "^1.4.5", |
| 56 | + "@sapphire/eslint-config": "^5.0.0", |
| 57 | + "@sapphire/prettier-config": "^2.0.0", |
57 | 58 | "@sapphire/ts-config": "^4.0.1",
|
58 | 59 | "@types/node": "^18.17.0",
|
59 |
| - "@typescript-eslint/eslint-plugin": "^5.62.0", |
60 |
| - "@typescript-eslint/parser": "^5.62.0", |
| 60 | + "@typescript-eslint/eslint-plugin": "^6.1.0", |
| 61 | + "@typescript-eslint/parser": "^6.1.0", |
61 | 62 | "@vitest/coverage-v8": "^0.33.0",
|
62 | 63 | "cz-conventional-changelog": "^3.3.0",
|
63 | 64 | "eslint": "^8.45.0",
|
64 | 65 | "eslint-config-prettier": "^8.8.0",
|
65 |
| - "eslint-plugin-prettier": "^4.2.1", |
| 66 | + "eslint-plugin-prettier": "^5.0.0", |
66 | 67 | "gen-esm-wrapper": "^1.1.3",
|
67 | 68 | "husky": "^8.0.3",
|
68 | 69 | "lint-staged": "^13.2.3",
|
69 |
| - "prettier": "^2.8.8", |
70 |
| - "pretty-quick": "^3.1.3", |
| 70 | + "prettier": "^3.0.0", |
71 | 71 | "tsup": "^7.1.0",
|
72 | 72 | "typedoc": "^0.24.8",
|
73 | 73 | "typedoc-json-parser": "^8.2.0",
|
|
108 | 108 | "ansi-regex": "^5.0.1",
|
109 | 109 | "minimist": "^1.2.8"
|
110 | 110 | },
|
| 111 | + "commitlint": { |
| 112 | + "extends": [ |
| 113 | + "@commitlint/config-conventional" |
| 114 | + ] |
| 115 | + }, |
| 116 | + "lint-staged": { |
| 117 | + "*": "prettier --ignore-unknown --write", |
| 118 | + "*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts" |
| 119 | + }, |
| 120 | + "config": { |
| 121 | + "commitizen": { |
| 122 | + "path": "./node_modules/cz-conventional-changelog" |
| 123 | + } |
| 124 | + }, |
111 | 125 | "gypfile": true,
|
112 | 126 | "packageManager": "[email protected]"
|
113 | 127 | }
|
0 commit comments