You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.8 KiB

{
"name": "vue3-lottie",
"version": "3.3.0",
"license": "MIT",
"author": "Sanjay Soundarajan <info@sanjaysoundarajan.dev> (https://sanjaysoundarajan.dev)",
"type": "module",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"klona": "^2.0.6",
"lottie-web": "5.12.2"
},
"peerDependencies": {
"vue": "^3.2"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/megasanjay/vue3-lottie.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/vue3-lottie.cjs.js",
"module": "dist/vue3-lottie.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue3-lottie.es.js",
"require": "./dist/vue3-lottie.cjs.js"
}
},
"devDependencies": {
"@babel/types": "7.23.6",
"@types/lodash-es": "4.17.12",
"@types/node": "20.10.4",
"@vitejs/plugin-vue": "2.3.4",
"@vue/compiler-sfc": "^3.3.4",
"typescript": "5.0.4",
"vite": "2.9.17",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-vue-type-imports": "^0.2.4",
"vue": "3.3.8",
"vue-tsc": "0.40.13",
"vue-typegen": "0.2.0"
},
"bugs": {
"url": "https://github.com/megasanjay/vue3-lottie/issues",
"email": "info@sanjaysoundarajan.dev"
},
"engines": {
"node": ">=12"
},
"homepage": "https://vue3-lottie.vercel.app/",
"keywords": [
"vue3",
"lottie"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"dev:build": "vite build && tsc -d --emitDeclarationOnly && vue-typegen gen -s ./src -o ./dist",
"lint": "eslint \"{packages,playground}/**/*.{ts,tsx,vue,js,jsx,html}\"",
"prettier": "npx prettier --write ."
}
}