-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "blottie",
"type": "module",
"version": "2.0.0",
"packageManager": "[email protected]",
"description": "Lottie component for VueJS 3 / Nuxt 3",
"author": "Applelo",
"license": "MIT",
"homepage": "https://github.com/Applelo/blottie",
"repository": {
"type": "git",
"url": "https://github.com/Applelo/blottie"
},
"bugs": "https://github.com/Applelo/blottie/issues",
"keywords": [
"lottie",
"lottie-web",
"animation",
"vue",
"typed",
"typescript",
"ts",
"type"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/blottie.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/blottie.umd.cjs"
}
}
},
"main": "./dist/blottie.umd.cjs",
"module": "./dist/blottie.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build",
"cypress": "cypress run --component",
"cypress-ui": "cypress open",
"typecheck": "vue-tsc --noEmit"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {
"lottie-web": "^5.12.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@types/node": "^20.12.8",
"@vitejs/plugin-vue": "^5.0.4",
"cypress": "^13.8.1",
"eslint": "^9.1.1",
"lodash.get": "^4.4.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vue": "^3.4.26",
"vue-tsc": "^2.0.16"
},
"publishConfig": {
"access": "public"
}
}