This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.62 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
{
"name": "vue3-typer",
"author": "CodeSpikeX",
"description": "Vue 3 component that simulates a user typing, selecting, and erasing text.",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"main": "./dist/vue3-typer.umd.js",
"module": "./dist/vue3-typer.es.js",
"homepage": "https://github.com/codespikex/vue3-typer#readme",
"style": "./dist/vue-typer.css",
"exports": {
".": {
"import": "./dist/vue3-typer.es.js",
"require": "./dist/vue3-typer.umd.js"
},
"./dist/vue-typer.css": "./dist/vue-typer.css"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"bugs": {
"url": "https://github.com/codespikex/vue3-typer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codespikex/vue3-typer.git"
},
"keywords": [
"vue-typer",
"vue",
"vuejs",
"vue.js",
"vue3",
"component",
"typer",
"typewriter",
"type",
"auto"
],
"dependencies": {
"lodash.split": "^4.4.2",
"vue": "^3.2.37"
},
"peerDependencies": {
"vue": "^3.2"
},
"devDependencies": {
"@types/lodash.split": "^4.4.7",
"@vitejs/plugin-vue": "^3.0.0",
"@vue/test-utils": "^2.0.2",
"autoprefixer": "^10.4.8",
"c8": "^7.12.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.7",
"vite": "^3.0.0",
"vite-plugin-banner": "^0.3.0",
"vite-plugin-dts": "^1.4.1",
"vite-plugin-static-copy": "^0.7.0",
"vitest": "^0.20.3"
}
}