@penner/responsive-easing 0.0.3 → 0.0.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.
- package/package.json +26 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@penner/responsive-easing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Responsive Easing is a library that dynamically generates easing functions for motion design that intelligently responds to varying conditions.",
|
|
5
5
|
"author": "Robert Penner <robert@robertpenner.com> (https://robertpenner.com)",
|
|
6
6
|
"homepage": "https://github.com/robertpenner/responsive-easing",
|
|
@@ -36,26 +36,20 @@
|
|
|
36
36
|
"lint:styles": "stylelint ./**/*.{css,scss}",
|
|
37
37
|
"format:scripts": "prettier ./src --write",
|
|
38
38
|
"format:styles": "stylelint ./**/*.{css,scss} --fix",
|
|
39
|
+
"format:all": "prettier . --write",
|
|
40
|
+
"lint-staged": "lint-staged",
|
|
39
41
|
"test": "vitest run",
|
|
40
42
|
"test:watch": "vitest",
|
|
41
43
|
"storybook": "storybook dev -p 6006",
|
|
42
44
|
"build-storybook": "storybook build -o storybook-static/storybook",
|
|
43
|
-
"deploy-storybook": "gh-pages -d storybook-static/storybook"
|
|
45
|
+
"deploy-storybook": "gh-pages -d storybook-static/storybook",
|
|
46
|
+
"prepare": "husky"
|
|
44
47
|
},
|
|
45
|
-
"
|
|
48
|
+
"devDependencies": {
|
|
46
49
|
"@chakra-ui/react": "^3.20.0",
|
|
50
|
+
"@chromatic-com/storybook": "^4.0.0",
|
|
47
51
|
"@emotion/react": "^11.14.0",
|
|
48
52
|
"@emotion/styled": "^11.14.0",
|
|
49
|
-
"chart.js": "^4.4.9",
|
|
50
|
-
"framer-motion": "^12.16.0",
|
|
51
|
-
"next-themes": "^0.4.6",
|
|
52
|
-
"react": "^18.3.1",
|
|
53
|
-
"react-chartjs-2": "^5.3.0",
|
|
54
|
-
"react-dom": "^18.3.1",
|
|
55
|
-
"react-icons": "^5.5.0"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@chromatic-com/storybook": "^4.0.0",
|
|
59
53
|
"@storybook/addon-a11y": "^9.0.5",
|
|
60
54
|
"@storybook/addon-docs": "^9.0.5",
|
|
61
55
|
"@storybook/addon-onboarding": "^9.0.5",
|
|
@@ -69,19 +63,29 @@
|
|
|
69
63
|
"@vitejs/plugin-react": "^4.3.3",
|
|
70
64
|
"@vitest/browser": "^3.2.2",
|
|
71
65
|
"@vitest/coverage-v8": "^3.2.2",
|
|
66
|
+
"chart.js": "^4.4.9",
|
|
72
67
|
"dts-bundle-generator": "^9.5.1",
|
|
73
68
|
"eslint": "^9.13.0",
|
|
74
69
|
"eslint-config-prettier": "^9.1.0",
|
|
75
70
|
"eslint-plugin-prettier": "^5.2.1",
|
|
76
71
|
"eslint-plugin-storybook": "^9.0.5",
|
|
72
|
+
"framer-motion": "^12.16.0",
|
|
77
73
|
"gh-pages": "^6.3.0",
|
|
74
|
+
"husky": "^9.1.7",
|
|
75
|
+
"lint-staged": "^16.1.2",
|
|
76
|
+
"next-themes": "^0.4.6",
|
|
78
77
|
"playwright": "^1.52.0",
|
|
79
78
|
"prettier": "^3.3.3",
|
|
79
|
+
"react": "^18.3.1",
|
|
80
|
+
"react-chartjs-2": "^5.3.0",
|
|
81
|
+
"react-dom": "^18.3.1",
|
|
82
|
+
"react-icons": "^5.5.0",
|
|
80
83
|
"storybook": "^9.0.5",
|
|
81
84
|
"stylelint": "^16.10.0",
|
|
82
85
|
"stylelint-config-recommended": "^14.0.1",
|
|
83
86
|
"stylelint-config-sass-guidelines": "^12.1.0",
|
|
84
87
|
"tslib": "^2.8.0",
|
|
88
|
+
"tsx": "^4.20.3",
|
|
85
89
|
"typescript": "^5.6.3",
|
|
86
90
|
"vite": "^5.4.10",
|
|
87
91
|
"vite-plugin-dts": "^4.3.0",
|
|
@@ -92,5 +96,14 @@
|
|
|
92
96
|
"extends": [
|
|
93
97
|
"plugin:storybook/recommended"
|
|
94
98
|
]
|
|
99
|
+
},
|
|
100
|
+
"lint-staged": {
|
|
101
|
+
"*.{js,jsx,ts,tsx}": [
|
|
102
|
+
"prettier --write",
|
|
103
|
+
"eslint --fix"
|
|
104
|
+
],
|
|
105
|
+
"*.{css,scss,md,json}": [
|
|
106
|
+
"prettier --write"
|
|
107
|
+
]
|
|
95
108
|
}
|
|
96
109
|
}
|