@refactico/pages 0.2.1 → 0.2.3

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@refactico/pages",
3
3
  "private": false,
4
- "version": "0.2.1",
4
+ "version": "0.2.3",
5
5
  "description": "A component library for building pages with React.",
6
6
  "author": "refactico",
7
7
  "license": "MIT",
@@ -50,16 +50,6 @@
50
50
  },
51
51
  "./css": "./dist/style.css"
52
52
  },
53
- "scripts": {
54
- "dev": "storybook dev -p 6006",
55
- "test": "vitest run",
56
- "test:watch": "vitest",
57
- "build": "storybook build",
58
- "build:lib": "tsc && vite build",
59
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
60
- "format": "prettier . --write --ignore-unknown",
61
- "prepare": "husky"
62
- },
63
53
  "devDependencies": {
64
54
  "@storybook/addon-actions": "^8.6.15",
65
55
  "@storybook/addon-essentials": "^8.6.14",
@@ -102,5 +92,15 @@
102
92
  "peerDependencies": {
103
93
  "react": "^19.0.0",
104
94
  "react-dom": "^19.0.0"
95
+ },
96
+ "scripts": {
97
+ "dev": "storybook dev -p 6006",
98
+ "test": "vitest run",
99
+ "test:watch": "vitest",
100
+ "build": "storybook build",
101
+ "build:lib": "tsc && vite build",
102
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
103
+ "lint:fix": "eslint . --ext ts,tsx --fix",
104
+ "format": "prettier . --write --ignore-unknown"
105
105
  }
106
- }
106
+ }