-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.78 KB
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": "@twheeljs/vue-truncate-list",
"version": "0.3.0",
"description": "A flexible Vue component for truncating lists with custom truncator rendering.",
"author": "yangjin.fe@gmail.com",
"keywords": [
"truncate",
"truncate list",
"ellipsis",
"vue"
],
"files": [
"dist/",
"src/",
"package.json",
"README.md"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/truncate-list.cjs.js",
"module": "dist/truncate-list.es.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"build:lib": "vue-tsc -b && vite build --mode lib",
"preview": "vite preview",
"commit": "cz",
"release": "release-it",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@vue/composition-api": "^1.2.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@release-it/conventional-changelog": "^10.0.1",
"@types/node": "^22.15.30",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/tsconfig": "^0.7.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"release-it": "^19.0.3",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vue": "^3.0.0",
"vue-tsc": "^2.2.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twheeljs/vue-truncate-list.git"
},
"bugs": {
"url": "https://github.com/twheeljs/vue-truncate-list/issues"
},
"homepage": "https://github.com/twheeljs/vue-truncate-list#readme",
"license": "MIT"
}