-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "@bt7s7k7/vue3gui",
"version": "1.0.5",
"description": "Small and simple UI components for Vue",
"scripts": {
"dev": "concurrently --raw --kill-others \"vite\" \"tsc --noEmit --watch --incremental --preserveWatchOutput\"",
"build": "vite build && yarn tsc -p ./tsconfig.npm.json ",
"serve": "vite preview"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@mdi/js": "^5.9.55",
"vue": "^3.0.5",
"vue-router": "4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@vitejs/plugin-vue": "^1.2.1",
"@vitejs/plugin-vue-jsx": "^1.1.3",
"@vue/compiler-sfc": "^3.0.5",
"concurrently": "^6.1.0",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"sass": "^1.32.13",
"typescript": "^4.1.3",
"vite": "^2.1.5"
},
"types": "dist/index.d.ts",
"main": "dist/vue3gui.umd.js",
"module": "dist/vue3gui.es.js",
"exports": {
".": {
"import": "./dist/vue3gui.es.js",
"require": "./dist/vue3gui.umd.js"
}
},
"license": "MIT",
"author": "bt7s7k7",
"files": [
"README.md",
"LICENSE",
"package.json",
"dist"
],
"repository": "https://github.com/bt7s7k7/Vue3GUI"
}