-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.3 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
47
48
49
{
"name": "@wghglory/vue-custom-elements-playground",
"license": "MIT",
"author": "Guanghui Wang <guanghui-wang@foxmail.com>",
"version": "0.0.1",
"files": [
"dist"
],
"main": "./dist/vue-custom-elements-playground.umd.js",
"module": "./dist/vue-custom-elements-playground.es.js",
"exports": {
".": {
"import": "./dist/vue-custom-elements-playground.es.js",
"require": "./dist/vue-custom-elements-playground.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/vue-custom-elements-playground.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/wghglory"
}
}