forked from graphieros/vue-data-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.63 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
{
"name": "vue-data-ui",
"private": false,
"version": "1.9.4",
"type": "module",
"description": "A user-empowering data visualization Vue components library",
"keywords": [
"Vue",
"data visualization",
"chart",
"graph",
"donut",
"waffle",
"radar",
"gauge",
"accelerometer",
"quadrant",
"line",
"table",
"rating",
"screenshot",
"sparkline",
"sparkbar",
"skeleton",
"scatter",
"heatmap",
"candlestick",
"age pyramid",
"dashboard",
"annotator",
"smiley",
"relationship circle",
"thermometer"
],
"author": "Alec Lloyd Probert",
"repository": {
"type": "git",
"url": "https://github.com/graphieros/vue-data-ui"
},
"homepage": "https://vue-data-ui.graphieros.com/",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/vue-data-ui.umd.cjs",
"module": "./dist/vue-data-ui.js",
"exports": {
".": {
"import": "./dist/vue-data-ui.js",
"export": "./dist/vue-data-ui.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"clean": "node cleanup.cjs",
"build": "npm run clean && vite build --mode production && node copy-types.cjs && npm i",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "npx cypress open"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"cypress": "^13.5.1",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"remove-attr": "^0.0.13",
"sass": "^1.57.1",
"vite": "^4.4.5",
"vitest": "^0.34.1",
"vue": "^3.3.4",
"vue-data-ui": "file:../vue-data-ui",
"xlsx": "^0.18.5"
}
}