-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.97 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.97 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
{
"name": "vue3-apexcharts",
"type": "module",
"version": "1.11.1",
"main": "./dist/vue3-apexcharts.umd.cjs",
"module": "./dist/vue3-apexcharts.js",
"private": false,
"exports": {
".": {
"types": "./typings/vue-apexcharts.d.ts",
"import": "./dist/vue3-apexcharts.js",
"require": "./dist/vue3-apexcharts.umd.cjs"
},
"./core": {
"types": "./typings/vue-apexcharts.d.ts",
"import": "./dist/vue3-apexcharts-core.js",
"require": "./dist/vue3-apexcharts-core.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "rm -rf dist && vite build && vite build --config vite.config.core.ts",
"types": "vue-tsc ",
"preview": "vite preview",
"prepare": "rm -rf dist && vite build && vite build --config vite.config.core.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"typings": "./typings/vue-apexcharts.d.ts",
"author": "Juned Chhipa",
"files": [
"src",
"dist/vue3-apexcharts*",
"dist/apexcharts.ssr.esm*",
"typings"
],
"license": "see LICENSE in LICENSE",
"keywords": [
"vuejs",
"vue3",
"charts",
"apexcharts.js",
"apexcharts"
],
"bugs": {
"url": "https://github.com/apexcharts/vue3-apexcharts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apexcharts/vue3-apexcharts.git"
},
"peerDependencies": {
"apexcharts": ">=5.10.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"apexcharts": {
"optional": false
}
},
"devDependencies": {
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"apexcharts": "^5.10.3",
"copyfiles": "2.4.0",
"happy-dom": "^14.12.0",
"jsdom": "^24.1.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vitest": "^1.6.0",
"vue": "^3.0.0",
"vue-tsc": "^1.4.2"
}
}