@design-llm/motion 1.0.3 → 1.0.5
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/README.md +127 -105
- package/dist/index.cjs +385 -193
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8725 -7150
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design-llm/motion",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "精美的 React 动效组件库 - 基于 Framer Motion 和 Tailwind CSS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"preview:public": "vite preview --outDir dist-public",
|
|
46
46
|
"preview:homepage": "vite preview --outDir dist-homepage",
|
|
47
47
|
"postbuild:lib": "node scripts/generate-types.js",
|
|
48
|
-
"prepublishOnly": "npm run build:lib"
|
|
48
|
+
"prepublishOnly": "npm run build:lib && node scripts/prepare-npm-readme.js",
|
|
49
|
+
"postpublish": "node scripts/restore-readme.js"
|
|
49
50
|
},
|
|
50
51
|
"dependencies": {
|
|
51
52
|
"@algolia/autocomplete-core": "^1.19.4",
|
|
@@ -56,6 +57,7 @@
|
|
|
56
57
|
"clsx": "^2.1.1",
|
|
57
58
|
"framer-motion": "^12.23.26",
|
|
58
59
|
"gsap": "^3.14.2",
|
|
60
|
+
"ogl": "^1.0.11",
|
|
59
61
|
"react": "^18.0.0 || ^19.0.0",
|
|
60
62
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
61
63
|
"react-syntax-highlighter": "^16.1.0",
|