@mi1y/toast-mi1y 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mi1y/toast-mi1y",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "A simple and flexible toast notification library for Svelte 5",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"svelte",
|
|
@@ -46,48 +46,29 @@
|
|
|
46
46
|
"package": "svelte-kit sync && svelte-package && publint",
|
|
47
47
|
"prepublishOnly": "npm run package",
|
|
48
48
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
49
|
-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
50
|
-
"lint": "prettier --check . && eslint .",
|
|
51
|
-
"format": "prettier --write ."
|
|
49
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
52
50
|
},
|
|
53
51
|
"publishConfig": {
|
|
54
52
|
"access": "public",
|
|
55
53
|
"registry": "https://registry.npmjs.org"
|
|
56
54
|
},
|
|
57
55
|
"devDependencies": {
|
|
58
|
-
"@eslint/compat": "^2.0.1",
|
|
59
|
-
"@eslint/js": "^9.39.2",
|
|
60
56
|
"@sveltejs/adapter-auto": "^7.0.0",
|
|
61
57
|
"@sveltejs/kit": "^2.50.1",
|
|
62
58
|
"@sveltejs/package": "^2.5.7",
|
|
63
59
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
64
|
-
"@tailwindcss/typography": "^0.5.19",
|
|
65
60
|
"@tailwindcss/vite": "^4.1.18",
|
|
66
|
-
"@types/node": "^22",
|
|
67
|
-
"eslint": "^9.39.2",
|
|
68
|
-
"eslint-config-prettier": "^10.1.8",
|
|
69
|
-
"eslint-plugin-svelte": "^3.14.0",
|
|
70
|
-
"globals": "^17.1.0",
|
|
71
|
-
"prettier": "^3.8.1",
|
|
72
|
-
"prettier-plugin-svelte": "^3.4.1",
|
|
73
|
-
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
74
61
|
"publint": "^0.3.17",
|
|
75
62
|
"svelte": "^5.48.2",
|
|
76
63
|
"svelte-check": "^4.3.5",
|
|
77
64
|
"tailwindcss": "^4.1.18",
|
|
78
65
|
"typescript": "^5.9.3",
|
|
79
|
-
"typescript-eslint": "^8.53.1",
|
|
80
66
|
"vite": "^7.3.1"
|
|
81
67
|
},
|
|
82
68
|
"peerDependencies": {
|
|
83
69
|
"svelte": "^5.0.0",
|
|
84
70
|
"tailwindcss": "^4.0.0"
|
|
85
71
|
},
|
|
86
|
-
"peerDependenciesMeta": {
|
|
87
|
-
"tailwindcss": {
|
|
88
|
-
"optional": true
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
72
|
"sideEffects": [
|
|
92
73
|
"**/*.css"
|
|
93
74
|
],
|