-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "typed-vue3",
"version": "0.0.2",
"type": "module",
"description": "Vue3组件, 基于 Typed.js 创建打字动画。",
"sideEffects": false,
"packageManager": "pnpm@8.14.1",
"keywords": [
"Type.js",
"vue3",
"逐字显示",
"打字效果"
],
"scripts": {
"dev": "cd play && vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint:eslint": "eslint --cache --max-warnings 0 \"src/*.{vue,ts}\" --fix",
"lint:prettier": "prettier --write \"src/*.{ts,vue}\"",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"prepare": "husky install"
},
"dependencies": {
"typed.js": "^2.1.0",
"vue": "^3.4.15"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.21.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
},
"homepage": "https://github.com/Ten-K/typed-vue3/tree/main/#readme",
"bugs": {
"url": "https://github.com/Ten-K/typed-vue3/issues"
},
"license": "MIT",
"author": "Ten-K",
"repository": {
"type": "git",
"url": "git+https://github.com/Ten-K/typed-vue3.git"
},
"main": "dist/typed-vue3.umd.cjs",
"module": "dist/typed-vue3.js",
"types": "dist/index.d.ts",
"unpkg": "dist/typed-vue3.umd.cjs",
"jsdelivr": "dist/typed-vue3.umd.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/typed-vue3.umd.cjs",
"import": "./dist/typed-vue3.js"
}
},
"files": [
"dist"
]
}