-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.58 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.58 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "vue-data-ui",
"private": false,
"version": "3.19.2",
"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",
"circle packing",
"dag"
],
"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": {
".": {
"types": "./dist/types/vue-data-ui.d.ts",
"import": "./dist/vue-data-ui.js",
"default": "./dist/vue-data-ui.js"
},
"./utils": {
"types": "./dist/types/utils.d.ts",
"import": "./dist/utils.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/components/*.js",
"default": "./dist/components/*.js"
},
"./style.css": "./dist/style.css"
},
"sideEffects": [
"**/*.css"
],
"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": "npm run pretty && node del-dev-dep.cjs && node check-types.cjs && npm run test && npx cypress run --component && npm run clean && vite build --mode production && node copy-types.cjs && node post-build.cjs",
"prod:publish": "npm run prod && node publish-build.cjs",
"test": "vitest --run",
"test:w": "vitest --watch",
"test:e2e": "npx cypress open",
"preprod": "node check-types.cjs && npm run pretty:fix && node del-dev-dep.cjs && npm run clean && vite build --mode production && node copy-types.cjs && node post-build.cjs",
"cy-all": "npx cypress run --component",
"cy": "node run-cy.cjs",
"types": "node check-types.cjs",
"pretty": "prettier . --check",
"pretty:fix": "prettier . --write"
},
"peerDependencies": {
"jspdf": ">=3.0.1",
"vue": ">=3.3.0"
},
"peerDependenciesMeta": {
"jspdf": {
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.6",
"cypress": "^15.14.1",
"jsdom": "^28.1.0",
"prettier": "3.8.1",
"remove-attr": "^0.0.13",
"sass": "^1.57.1",
"simple-git": "^3.24.0",
"typescript": "^6.0.2",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"vue": "^3.5.33"
}
}