-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "vue-glitched",
"description": "a vue3 component to add a glitching effect to text",
"author": {
"name": "lewardo",
"email": "[email protected]",
"url": "https://github.com/lewardo"
},
"license": "GPL-3.0",
"homepage": "https://lewardo.github.io/vue-glitched",
"repository": {
"type": "git",
"url": "https://github.com/lewardo/vue-glitched.git"
},
"keywords": [
"vue",
"vue-component",
"glitch"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/lewardo/vue-glitched/issues"
},
"files": [
"dist"
],
"main": "./dist/vue-glitched.umd.js",
"module": "./dist/vue-glitched.mjs",
"exports": {
".": {
"import": "./dist/vue-glitched.mjs",
"require": "./dist/vue-glitched.umd.js"
}
},
"version": "0.3.5",
"scripts": {
"dev": "vite",
"dev-lan": "vite --host",
"build": "vite build",
"docs": "vite build --mode docs"
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"vite": "^4.3.0",
"vite-plugin-banner": "^0.7.0"
}
}