@vijayhardaha/dev-config 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +4 -6
package/README.md CHANGED
@@ -25,11 +25,17 @@ bun install @vijayhardaha/dev-config --save-dev
25
25
  ### Install Required Packages
26
26
 
27
27
  ```bash
28
- bun add --save-dev eslint@9.39.4 @eslint/js@9.39.4 @next/eslint-plugin-next@15.5.15 eslint-config-next@15.5.15 prettier @prettier/plugin-xml vitest husky @eslint/compat @eslint/eslintrc eslint-config-prettier eslint-plugin-prettier globals typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-plugin-jsdoc eslint-plugin-import eslint-import-resolver-typescript
28
+ bun add --save-dev eslint@9.39.4 @eslint/js@9.39.4 prettier @prettier/plugin-xml @eslint/compat @eslint/eslintrc eslint-config-prettier eslint-plugin-prettier globals eslint-plugin-jsdoc eslint-plugin-import eslint-import-resolver-typescript typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser
29
29
  ```
30
30
 
31
31
  ### Install Optional Packages
32
32
 
33
+ ### Typescript
34
+
35
+ ```bash
36
+ bun add --save-dev typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser
37
+ ```
38
+
33
39
  ### Prettier
34
40
 
35
41
  ```bash
@@ -51,13 +57,13 @@ bun add --save-dev eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-j
51
57
  #### Next.js
52
58
 
53
59
  ```bash
54
- bun add --save-dev @next/eslint-plugin-next eslint-config-next
60
+ bun add --save-dev @next/eslint-plugin-next@15.5.15 eslint-config-next@15.5.15
55
61
  ```
56
62
 
57
63
  #### Commitlint
58
64
 
59
65
  ```bash
60
- bun add --save-dev @commitlint/cli @commitlint/config-conventional @commitlint/types
66
+ bun add --save-dev husky @commitlint/cli @commitlint/config-conventional @commitlint/types
61
67
  ```
62
68
 
63
69
  #### Next Sitemap
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vijayhardaha/dev-config",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Reusable development configurations for Next.js + TypeScript projects",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
@@ -62,10 +62,8 @@
62
62
  "@commitlint/cli": "^20.5.3",
63
63
  "@commitlint/config-conventional": "^20.5.3",
64
64
  "@commitlint/types": "^20.5.0",
65
- "@next/eslint-plugin-next": "^15.5.15",
66
65
  "@prettier/plugin-xml": "^3.4.2",
67
66
  "@vitest/coverage-v8": "^4.1.5",
68
- "eslint-config-next": "^15.5.15",
69
67
  "eslint-plugin-jsx-a11y": "^6.10.2",
70
68
  "eslint-plugin-react": "^7.37.5",
71
69
  "eslint-plugin-react-hooks": "^7.1.1",
@@ -75,7 +73,8 @@
75
73
  "stylelint-config-property-sort-order-smacss": "^11.2.0",
76
74
  "stylelint-config-standard-scss": "^17.0.0",
77
75
  "stylelint-order": "^8.1.1",
78
- "typescript": "^6.0.3"
76
+ "typescript": "^6.0.3",
77
+ "vitest": "^4.1.5"
79
78
  },
80
79
  "peerDependencies": {
81
80
  "@eslint/compat": ">=2",
@@ -93,8 +92,7 @@
93
92
  "globals": ">=17",
94
93
  "husky": ">=9",
95
94
  "prettier": ">=3",
96
- "typescript": ">=6",
97
- "vitest": ">=4"
95
+ "typescript": ">=6"
98
96
  },
99
97
  "peerDependenciesMeta": {
100
98
  "@commitlint/cli": {