mirror of
https://github.com/diffusionstudio/lottie.git
synced 2026-09-14 13:40:33 +08:00
ce3d2a0d18
- Introduced a LICENSE file with MIT licensing terms. - Renamed project from "lottie-experiments" to "text-to-lottie" in package.json. - Added license information to package.json. - Updated README.md to reflect project name change and improved usage instructions. - Revised SKILL.md to clarify the authoring process for Lottie files.
37 lines
923 B
JSON
37 lines
923 B
JSON
{
|
|
"name": "text-to-lottie",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"postinstall": "node scripts/copy-canvaskit.mjs"
|
|
},
|
|
"dependencies": {
|
|
"canvaskit-wasm": "^0.39.1",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.468.0",
|
|
"motion": "^12.40.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"tailwind-merge": "^2.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@radix-ui/react-slider": "^1.2.2",
|
|
"@radix-ui/react-slot": "^1.1.1",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"@types/node": "^22.19.19",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"tailwindcss": "^4.0.0",
|
|
"tw-animate-css": "^1.2.5",
|
|
"typescript": "~5.7.2",
|
|
"vite": "^6.0.7"
|
|
}
|
|
}
|