-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "gloryui-vue",
"license": "MIT",
"author": "Guanghui Wang <[email protected]>",
"version": "0.0.1",
"files": [
"dist"
],
"main": "./dist/dv-components.umd.js",
"module": "./dist/dv-components.es.js",
"exports": {
".": {
"import": "./dist/dv-components.es.js",
"require": "./dist/dv-components.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
"preserve": "vite build",
"serve": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@types/node": "^17.0.18",
"@vitejs/plugin-vue": "^2.2.0",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vue-tsc": "^0.29.8"
},
"keywords": [
"vue component library"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wghglory/gloryui-vue.git"
}
}