@vijayhardaha/dev-config 1.1.3 → 1.1.4

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 -9
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -19,13 +19,13 @@ Reusable development configuration package for Next.js + TypeScript projects.
19
19
  ## Installation
20
20
 
21
21
  ```bash
22
- bun install @vijayhardaha/dev-config --save-dev
22
+ bun install @vijayhardaha/dev-config --dev
23
23
  ```
24
24
 
25
25
  ### Install Required Packages
26
26
 
27
27
  ```bash
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
28
+ bun add --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
@@ -33,43 +33,43 @@ bun add --save-dev eslint@9.39.4 @eslint/js@9.39.4 prettier @prettier/plugin-xml
33
33
  ### Typescript
34
34
 
35
35
  ```bash
36
- bun add --save-dev typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser
36
+ bun add --dev typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser
37
37
  ```
38
38
 
39
39
  ### Prettier
40
40
 
41
41
  ```bash
42
- bun add --save-dev prettier @prettier/plugin-xml
42
+ bun add --dev prettier @prettier/plugin-xml
43
43
  ```
44
44
 
45
45
  #### Stylelint
46
46
 
47
47
  ```bash
48
- bun add --save-dev stylelint stylelint-config-property-sort-order-smacss stylelint-config-standard-scss stylelint-order
48
+ bun add --dev stylelint stylelint-config-property-sort-order-smacss stylelint-config-standard-scss stylelint-order
49
49
  ```
50
50
 
51
51
  #### React
52
52
 
53
53
  ```bash
54
- bun add --save-dev eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y
54
+ bun add --dev eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y
55
55
  ```
56
56
 
57
57
  #### Next.js
58
58
 
59
59
  ```bash
60
- bun add --save-dev @next/eslint-plugin-next@15.5.15 eslint-config-next@15.5.15
60
+ bun add --dev @next/eslint-plugin-next@15.5.15 eslint-config-next@15.5.15
61
61
  ```
62
62
 
63
63
  #### Commitlint
64
64
 
65
65
  ```bash
66
- bun add --save-dev husky @commitlint/cli @commitlint/config-conventional @commitlint/types
66
+ bun add --dev husky @commitlint/cli @commitlint/config-conventional @commitlint/types
67
67
  ```
68
68
 
69
69
  #### Next Sitemap
70
70
 
71
71
  ```bash
72
- bun add --save-dev next-sitemap
72
+ bun add --dev next-sitemap
73
73
  ```
74
74
 
75
75
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vijayhardaha/dev-config",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Reusable development configurations for Next.js + TypeScript projects",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
@@ -62,7 +62,6 @@
62
62
  "@commitlint/config-conventional": "^21.0.1",
63
63
  "@commitlint/types": "^21.0.1",
64
64
  "@prettier/plugin-xml": "^3.4.2",
65
- "@vijayhardaha/dev-config": "^1.1.2",
66
65
  "@vitest/coverage-v8": "^4.1.7",
67
66
  "eslint-plugin-jsx-a11y": "^6.10.2",
68
67
  "eslint-plugin-react": "^7.37.5",