forked from shakee93/vue-toasted
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.36 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
{
"name": "@hoppscotch/vue-toasted",
"description": "Port of vue-toasted to Vue 3",
"version": "0.1.0",
"private": false,
"author": "The Hoppscotch Team <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hoppscotch/vue-toasted.git"
},
"files": [
"dist"
],
"main": "dist/vue-toasted.umd.js",
"module": "dist/vue-toasted.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-toasted.mjs",
"require": "./dist/vue-toasted.umd.js"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"browserslist": [
"last 7 versions"
],
"scripts": {
"dev": "vite",
"build": "vite build && copyfiles --flat src/index.d.ts dist",
"release": "npm run build"
},
"keywords": [
"toast",
"vue",
"vue-toasted",
"toasted",
"responsive",
"touch-compatible",
"touch",
"vue-toast",
"vue-toastr",
"toastr"
],
"peerDependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@types/hammerjs": "^2.0.41",
"@types/node": "^18.7.13",
"@types/shortid": "^0.0.29",
"@vitejs/plugin-vue": "^3.0.3",
"animejs": "^3.2.1",
"copyfiles": "^2.4.1",
"hammerjs": "^2.0.8",
"sass": "^1.54.5",
"shortid": "^2.2.16",
"vite": "^3.0.9"
}
}