-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.22 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@todovue/tv-ui",
"private": false,
"author": "Cristhian Daza",
"description": "UI component library for TODOvue application",
"license": "MIT",
"version": "1.0.1",
"type": "module",
"homepage": "https://ui.todovue.blog",
"repository": {
"name": "@todovue/tv-ui",
"type": "git",
"url": "git+https://github.com/TODOvue/tv-ui.git"
},
"bugs": {
"url": "https://github.com/TODOvue/tv-ui/issues"
},
"keywords": [
"todovue",
"front-end",
"web",
"vue",
"vuejs",
"vue-js",
"ui",
"show-ui",
"vue-ui",
"vue-ui-component"
],
"exports": {
".": {
"import": "./dist/tv-ui.es.js",
"require": "./dist/tv-ui.cjs.js"
},
"./style.css": "./dist/tv-ui.css",
"./nuxt": "./nuxt.js"
},
"main": "dist/tv-ui.cjs.js",
"module": "dist/tv-ui.es.js",
"types": "dist/tv-ui.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"nuxt.js"
],
"engines": {
"node": ">=20.19.0"
},
"sideEffects": [
"*.css",
"*.scss",
"dist/*.css"
],
"scripts": {
"dev": "node scripts/copy-assets.js && vite",
"build": "vite build",
"build:demo": "VITE_BUILD_TARGET=demo vite build"
},
"peerDependencies": {
"vue": "^3.5.27"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.4",
"sass": "^1.97.2",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"@todovue/tv-alert": "^1.2.1",
"@todovue/tv-article": "^1.3.6",
"@todovue/tv-breadcrumbs": "^1.1.4",
"@todovue/tv-button": "^1.2.6",
"@todovue/tv-card": "^1.1.4",
"@todovue/tv-demo": "^1.4.11",
"@todovue/tv-footer": "^1.1.3",
"@todovue/tv-hero": "^1.2.1",
"@todovue/tv-label": "^1.2.4",
"@todovue/tv-menu": "^1.1.5",
"@todovue/tv-modal": "^1.2.1",
"@todovue/tv-pagination": "^1.1.4",
"@todovue/tv-progress-bar": "^1.1.2",
"@todovue/tv-relative-time": "^1.3.1",
"@todovue/tv-scroll-top": "^1.0.4",
"@todovue/tv-search": "^1.2.1",
"@todovue/tv-settings": "^1.0.4",
"@todovue/tv-sidebar": "^2.2.2",
"@todovue/tv-theme-button": "^1.2.1",
"@todovue/tv-toc": "^1.2.0",
"highlight.js": "^11.11.1",
"markdown-it": "^13.0.2",
"vue-router": "^4.6.4"
}
}