-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.72 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.72 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@laravilt/notifications",
"version": "1.0.0",
"description": "Complete notification system with toast messages, colors, icons, and actions. Display beautiful toast notifications with success, danger, warning, and info states.",
"author": "Fady Mondy <info@3x1.io>",
"license": "MIT",
"type": "module",
"main": "./dist/notifications.umd.js",
"module": "./dist/notifications.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/notifications.es.js",
"require": "./dist/notifications.umd.js"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"resources"
],
"keywords": [
"laravilt",
"notifications",
"toast",
"vue",
"vue3",
"alerts",
"messages",
"inertia",
"laravel"
],
"repository": {
"type": "git",
"url": "https://github.com/laravilt/notifications"
},
"bugs": {
"url": "https://github.com/laravilt/notifications/issues"
},
"homepage": "https://laravilt.dev/notifications",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist resources/js/app.ts || true",
"build:npm": "npm run build",
"prepublishOnly": "npm run build:npm",
"format": "prettier --write resources/",
"format:check": "prettier --check resources/",
"lint": "eslint . --fix"
},
"peerDependencies": {
"@inertiajs/vue3": "^2.0.0",
"vue": "^3.3.0"
},
"peerDependenciesMeta": {
"@inertiajs/vue3": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^22.13.5",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vueuse/core": "^14.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"lucide-vue-next": "^0.555.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"radix-vue": "^1.9.17",
"reka-ui": "^2.6.1",
"tailwind-merge": "^3.4.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.23.0",
"vite": "^7.0.4",
"vue": "^3.5.13",
"vue-tsc": "^2.2.4"
},
"dependencies": {
"tailwindcss": "^4.1.1"
}
}