chat-bubbles-for-yt/package.json
peetzweg/ c4cce3c900
feat(*): Converts Codebase to TypeScript (#10)
* upgrade react and convert to typescript project

* adds some typing to the useMessages hook

* changes dev server port back to previous default

* adds types to all files

* moves static prop to inner div as it's prevent text wrapping the bubble. `style` is not a valid motion.div prop.

* fixes bouncing bubbles on when disappearing.

* organizes imports

* revert unintended change of timeout length
2023-02-28 09:30:00 +09:00

23 lines
487 B
JSON

{
"name": "chat-bubbles",
"private": true,
"version": "0.2.0",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^9.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react-swc": "^3.0.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}