-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "vue-dk-toast",
"version": "3.2.1",
"private": false,
"description": "Lightweight toast notification plugin for Vue 3",
"author": "Daniel Knights",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "npm run checks && vite build",
"checks": "eslint src && vue-tsc --noEmit",
"pub": "npm run build && npm version patch && npm publish",
"pub-minor": "npm run build && npm version minor && npm publish",
"pub-major": "npm run build && npm version major && npm publish"
},
"main": "dist/dkToast.umd.min.js",
"types": "dist/dkToast.d.ts",
"files": [
"dist"
],
"dependencies": {
"vue": "^3.2.32"
},
"devDependencies": {
"@babel/types": "^7.17.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.32",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.6.0",
"prettier": "^2.6.2",
"typescript": "~4.6.3",
"vite": "^2.9.1",
"vue-eslint-parser": "^8.3.0",
"vue-tsc": "^0.34.6"
},
"keywords": [
"vue",
"vue3",
"vuejs",
"plugin",
"toast",
"notification",
"notifications"
],
"repository": {
"type": "git",
"url": "https://github.com/Daniel-Knights/vue-dk-toast"
}
}