-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "vue3-text-clamp",
"author": "Sherwin Shen",
"description": "Vue3 component which allows you to ellipsis your multiline text.",
"version": "0.1.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"build:lib": "vue-tsc --noEmit && rm -rf lib && npx rollup -c build/rollup.config.ts"
},
"main": "lib/text-clamp.js",
"module": "lib/text-clamp.esm.js",
"types": "lib/types/index.d.ts",
"license": "MIT",
"dependencies": {
"resize-detector": "^0.3.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vue/compiler-sfc": "^3.2.37",
"highlight.js": "^11.6.0",
"less": "^4.1.3",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-vue": "^6.0.0",
"spectre.css": "^0.5.9",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vue-i18n": "^9.2.2",
"vue-tsc": "^0.38.4"
},
"peerDependencies": {
"resize-detector": "^0.3.0",
"vue": "^3.2.37"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sherwinshen/vue3-text-clamp.git"
},
"bugs": {
"url": "https://github.com/sherwinshen/vue3-text-clamp/issues"
},
"homepage": "https://sherwinshen.github.io/vue3-text-clamp/#/",
"keywords": [
"text-clamp",
"vue3",
"text-overflow",
"ellipsis",
"typescript"
]
}