-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
105 lines (105 loc) · 2.66 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
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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vue-data-ui",
"private": false,
"version": "2.4.60",
"type": "module",
"description": "A user-empowering data visualization Vue 3 components library for eloquent data storytelling",
"keywords": [
"3d bar",
"Vue",
"accelerometer",
"age pyramid",
"annotator",
"candlestick",
"chart",
"cluster",
"dashboard",
"data storytelling",
"data visualization",
"donut evolution",
"donut",
"dumbbell",
"funnel",
"galaxy",
"gauge",
"graph",
"heatmap",
"kpi",
"line",
"molecule",
"mood radar",
"quadrant",
"quick chart",
"radar",
"rating",
"relationship circle",
"rings",
"scatter",
"screenshot",
"skeleton",
"smiley",
"sparkbar",
"sparkline",
"stackbar",
"table heatmap",
"table",
"thermometer",
"tiremarks",
"tree",
"treemap",
"waffle",
"wheel",
"wordcloud"
],
"author": "Alec Lloyd Probert",
"repository": {
"type": "git",
"url": "git+https://github.com/graphieros/vue-data-ui.git"
},
"homepage": "https://vue-data-ui.graphieros.com/",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/types/vue-data-ui.d.ts",
"default": "./dist/vue-data-ui.js"
},
"default": {
"types": "./dist/types/vue-data-ui.d.cts",
"default": "./dist/vue-data-ui.cjs"
}
},
"./style.css": "./dist/style.css"
},
"main": "dist/vue-data-ui.cjs",
"module": "dist/vue-data-ui.js",
"types": "dist/types/vue-data-ui.d.ts",
"scripts": {
"dev": "node add-dev-dep.cjs && npm i && vite",
"clean": "node cleanup.cjs",
"build": "npm run clean && vite build --mode production && node copy-types.cjs && npm i",
"prod": "node del-dev-dep.cjs && npm run test && npx cypress run --component && npm run clean && vite build --mode production && node copy-types.cjs && node copy-docs.cjs",
"prod:publish": "npm run prod && node publish-build.cjs",
"build:dev": "npm run build && npm run dev",
"test": "vitest --run",
"test:w": "vitest --watch",
"test:e2e": "npx cypress open",
"simple-build": "npm run clean && vite build --mode production && node copy-types.cjs",
"preprod": "node del-dev-dep.cjs && npm run clean && vite build --mode production && node copy-types.cjs && node copy-docs.cjs"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"cypress": "^13.16.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"remove-attr": "^0.0.13",
"sass": "^1.57.1",
"simple-git": "^3.24.0",
"vite": "^5.4.7",
"vitest": "^2.1.1",
"vue": "^3.3.4"
}
}