-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (62 loc) · 1.54 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
{
"name": "vue-truncate-read-more",
"version": "1.1.2",
"description": "A Vue.js V3/2 plugin for truncating text with a 'Read More' button to expand the text.",
"homepage": "https://erangrin.github.io/vue-read-more-truncate/#demo",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/EranGrin/vue-read-more-truncate"
},
"files": [
"dist"
],
"types": "vue-truncate-read-more.d.ts",
"main": "./dist/truncate-read-more.umd.js",
"module": "./dist/truncate-read-more.es.js",
"exports": {
".": {
"import": "./dist/truncate-read-more.es.js",
"require": "./dist/truncate-read-more.umd.js"
},
"./styles.css": "./dist/style.css"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:preview": "vitepress preview docs --port 8080"
},
"keywords": [
"vue",
"vue3",
"plugin",
"truncate",
"read-more",
"clamp",
"text-clipper",
"clipper",
"character-limit"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"text-clipper": "^2.2.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"@vue/compiler-sfc": "^3.2.47",
"typescript": "^5.0.4",
"vite": "^4.0.0",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vitepress": "^1.0.0-alpha.75",
"vue": "^3.0.0",
"vue-tsc": "^1.2.0"
},
"peerDependencies": {
"vue": "^2.0.0 || >=3.0.0"
}
}