@knighttower/toast
Version:
A dead simple toast library
54 lines • 1.17 kB
JSON
{
"name": "@knighttower/toast",
"version": "1.9.0",
"type": "module",
"description": "A dead simple toast library",
"main": "dist/cjs/toast.cjs",
"module": "dist/esm/toast.js",
"unpkg": "dist/browser/toast.js",
"jsdelivr": "dist/browser/toast.js",
"browser": "dist/browser/toast.js",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/toast.js",
"require": "./dist/cjs/toast.cjs"
},
"./dist/*": "./dist/*",
"./src/*": "./src/*"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"utility",
"library",
"plugin",
"javascript",
"DOM",
"functions",
"helper",
"knighttower",
"toast"
],
"scripts": {
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "vitest"
},
"homepage": "https://github.com/knighttower/JsUtility",
"repository": {
"type": "git",
"url": "git://github.com/knighttower/JsUtility.git",
"directory": "packages/toast"
},
"peerDependencies": {
"@knighttower/utility": "*"
},
"dependencies": {
"@knighttower/utility": "*"
}
}