-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wowerlay",
"description": "Wowerlay is a popover library for Vue 3 applications.",
"version": "1.1.0",
"main": "./dist/wowerlay.umd.js",
"module": "./dist/wowerlay.mjs",
"types": "./dist/types/src/lib.d.ts",
"exports": {
".": {
"import": "./dist/wowerlay.mjs",
"require": "./dist/wowerlay.umd.js",
"types": "./dist/types/src/lib.d.ts"
},
"./style.css": "./dist/style.css"
},
"repository": {
"url": "git+https://github.com/teamseodo/wowerlay.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/teamseodo/wowerlay/issues"
},
"homepage": "https://github.com/teamseodo/wowerlay#readme",
"keywords": [
"vue 3",
"wowerlay",
"popover"
],
"license": "MIT",
"files": [
"/dist",
"README.md"
],
"scripts": {
"dev": "cross-env MODE=demo vite",
"build": "cross-env MODE=production vite build",
"build:demo": "cross-env MODE=demo vite build",
"script:build": "tsc --project tsconfig-build.json && cross-env MODE=production vite build",
"watch": "cross-env MODE=production vite build --watch"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.18.34",
"@types/prompts": "^2.4.4",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"bottom-sheet-vue3": "^1.0.2",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"dedent": "^0.7.0",
"eslint": "8.7.0",
"eslint-config-airbnb-typescript-prettier": "5.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"highlight.js": "^11.8.0",
"pnpm": "^8.6.0",
"prettier": "2.5.1",
"prompts": "^2.4.2",
"sass": "^1.62.1",
"ts-node": "^10.9.1",
"typescript": "5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^0.8.3",
"vue": "^3.3.4"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"dependencies": {
"@floating-ui/vue": "^1.0.1"
}
}