-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 874 Bytes
/
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
{
"name": "@dhafitf/toast-it",
"description": "A simple toast library",
"version": "1.0.1",
"license": "MIT",
"author": "Dhafit Farenza",
"umd": "toastIt",
"main": "dist/toast-it.cjs",
"module": "dist/toast-it.js",
"browser": "dist/toast-it.umd.js",
"jsdelivr": "./dist/toast-it.umd.js",
"unpkg": "./dist/toast-it.umd.js",
"types": "dist/toast-it.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"toast",
"notification",
"alert"
],
"homepage": "https://github.com/dhafitf/toast-it#readme",
"repository": {
"url": "https://github.com/dhafitf/toast-it"
},
"scripts": {
"build": "tsup",
"lint": "tsc"
},
"dependencies": {
"goober": "^2.1.14"
},
"devDependencies": {
"@swc/core": "^1.4.17",
"esbuild-plugin-umd-wrapper": "^2.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}