forked from emmanuelsw/notiwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "notiwind",
"description": "A headless Vue 3 notification library to use with Tailwind CSS.",
"version": "2.0.2",
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"CHANGELOG.md"
],
"license": "MIT",
"author": {
"name": "Emmanuel Deossa",
"url": "https://github.com/emmanuelsw"
},
"homepage": "https://github.com/emmanuelsw/notiwind",
"repository": {
"type": "git",
"url": "[email protected]:emmanuelsw/notiwind.git"
},
"bugs": {
"url": "https://github.com/emmanuelsw/notiwind/issues"
},
"scripts": {
"build": "vite build",
"lint": "vue-tsc --noEmit && eslint --ext .ts,.vue src"
},
"dependencies": {
"mitt": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.44.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.1",
"prettier": "2.8.8",
"typescript": "^5.1.6",
"vite-plugin-dts": "^3.0.3",
"vue-tsc": "^1.8.3",
"vite": "^4.3.9"
},
"peerDependencies": {
"vue": "^3.3.4"
},
"keywords": [
"vue",
"vue3",
"vite",
"vuejs",
"tailwindcss",
"tailwindui",
"notifications",
"toast"
]
}