masoneffect 2.0.1 → 2.0.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 +13 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  A collection of animation effects library. Supports React, Vue, Svelte, and vanilla JavaScript with **Tree-shaking** support.
6
6
 
7
+ > 🤖 **For AI Agents**: If you are an AI agent (Cursor, GitHub Copilot, ChatGPT, etc.) setting up this package, please read **[AI_SETUP_GUIDE.md](./AI_SETUP_GUIDE.md)** first for automatic environment detection and configuration.
8
+
7
9
  ## ✨ Features
8
10
 
9
11
  - 🎯 **Tree-shaking Support**: Import only the effects you need
@@ -18,6 +20,17 @@ A collection of animation effects library. Supports React, Vue, Svelte, and vani
18
20
  npm install masoneffect
19
21
  ```
20
22
 
23
+ ### 🤖 AI Agent Guide
24
+
25
+ **⚠️ IMPORTANT FOR AI AGENTS**: Before using this package, read **[AI_SETUP_GUIDE.md](./AI_SETUP_GUIDE.md)** for:
26
+ - Automatic environment detection (framework, TypeScript, build tool)
27
+ - Framework-specific setup guides
28
+ - Effect recommendation logic based on user requests
29
+ - Complete code templates for all frameworks
30
+ - Tree-shaking optimization rules
31
+
32
+ This guide is optimized for AI agents to automatically configure MasonEffect correctly in any project.
33
+
21
34
  ## 🎯 Available Effects
22
35
 
23
36
  ### 1. TextToParticle
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "masoneffect",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "A collection of animation effects library. Supports React, Vue, Svelte, and vanilla JavaScript with Tree-shaking support.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -108,6 +108,7 @@
108
108
  "bugs": {
109
109
  "url": "https://github.com/fe-hyunsu/masoneffect/issues"
110
110
  },
111
+ "aiAgentGuide": "./AI_SETUP_GUIDE.md",
111
112
  "devDependencies": {
112
113
  "@rollup/plugin-commonjs": "^25.0.7",
113
114
  "@rollup/plugin-node-resolve": "^15.2.3",