-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
{
"name": "vue-txt-anime",
"type": "module",
"version": "0.1.1",
"private": false,
"packageManager": "pnpm@8.6.12",
"description": "It is a vue component, which contains many beautiful and free text effects",
"author": "phk422 <penghongkun422@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/phk422/vue-txt-anime"
},
"keywords": [
"vue",
"vue3",
"component",
"txt",
"text",
"anime",
"animate"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/vue-txt-anime.js",
"require": "./dist/vue-txt-anime.umd.js"
}
},
"main": "./dist/vue-txt-anime.umd.js",
"module": "./dist/vue-txt-anime.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build:demo": "vite build --config vite.config.demo.ts",
"build": "vite build && pnpm build:tsc",
"build:tsc": "vue-tsc --emitDeclarationOnly",
"bump": "bump -c -t -p",
"preview": "vite preview",
"publish:ci": "npm publish --access public",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"txtanime.js": "^1.7.0",
"vue": "^3.2.0"
},
"dependencies": {
"txtanime.js": "^1.7.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/node": "^20.11.19",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.56.0",
"eslint-plugin-format": "^0.1.0",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vue-tsc": "^1.8.27"
}
}