-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "city-dashboard-component",
"author": "Igor Ho",
"keywords": [
"city-dashboard",
"city-dashboard-component",
"one-premium"
],
"version": "1.1.0",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"types": "vue-tsc",
"preview": "vite preview",
"lint": "eslint --fix --ext .js,.ts,.vue ."
},
"dependencies": {
"apexcharts": "^3.48.0",
"material-icons": "^1.13.12",
"vue": "^3.4.21",
"vue3-apexcharts": "^1.5.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"eslint-plugin-vue": "^9.20.1",
"sass": "^1.70.0",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vue-tsc": "^2.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/igorho2000/city-dashboard-component"
}
}