-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.43 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
{
"name": "vue3-text-typer",
"version": "0.1.9",
"description": "适用于 vue3 的打字机效果组件。速度和光标可控。",
"type": "module",
"files": [
"dist/*"
],
"main": "dist/typer.umd.js",
"module": "dist/typer.es.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/typer.es.js",
"require": "./dist/typer.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "^22.10.6",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"terser": "^5.37.0",
"typescript": "~5.6.2",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"keywords": [
"Vite",
"Vue3",
"TypeScript",
"Web",
"typewriter",
"typer",
"打字机"
],
"author": "egg_star",
"engines": {
"node": ">=20"
},
"browserslist": [
"> 1%",
"not ie 11",
"not op_mini all",
"not dead"
],
"repository": {
"type": "git",
"url": "https://github.com/star-devil/vue3-typewriter"
},
"license": "MIT",
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}