forked from emmanuelsw/notiwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "notiwind",
"description": "A headless Vue 3 notification library to use with Tailwind CSS.",
"version": "1.2.6",
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"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": "rm -rf dist/ && rollup -c",
"lint": "eslint --ext .js,.vue src"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@vue/compiler-sfc": "^3.2.37",
"eslint": "^8.17.0",
"eslint-plugin-vue": "^9.1.0",
"mitt": "^3.0.0",
"rollup": "^2.75.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-vue": "^6.0.0"
},
"peerDependencies": {
"vue": "^3.2.37"
},
"keywords": [
"vue",
"vue3",
"vite",
"vuejs",
"tailwindcss",
"tailwindui",
"notifications",
"toast"
]
}