-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "notiwind",
"description": "A headless Vue 3 notification library to use with Tailwind CSS.",
"version": "2.1.0",
"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",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"mitt": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"prettier": "^3.3.3",
"typescript": "~5.6.3",
"vite-plugin-dts": "^3.0.3",
"vue-tsc": "^2.1.10",
"vite": "^6.0.3"
},
"peerDependencies": {
"vue": "^3.5.13"
},
"keywords": [
"vue",
"vue3",
"vite",
"vuejs",
"tailwindcss",
"tailwindui",
"notifications",
"toast"
]
}