-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.29 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
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": "toastification",
"version": "0.1.5",
"description": "Toast Notifications for TypeScript & Lestin",
"author": "Shahab Movahhedi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/movahhedi/Toastification"
},
"bugs": {
"url": "https://github.com/movahhedi/Toastification/issues"
},
"homepage": "https://github.com/movahhedi/Toastification#readme",
"keywords": [
"toast",
"typescript",
"js",
"ts",
"notification",
"toast-notification",
"lestin",
"movahhedi"
],
"packageManager": "[email protected]",
"type": "module",
"source": "./src/Toast.tsx",
"main": "./dist/Toast.cjs",
"module": "./dist/Toast.mjs",
"umd:main": "./dist/Toast.umd.js",
"unpkg": "./dist/Toast.umd.js",
"types": "./dist/Toast.d.ts",
"exports": {
".": "./dist/Toast.modern.mjs",
"./Toast": "./src/Toast.tsx",
"./Toast.tsx": "./src/Toast.tsx",
"./Toast.scss": "./src/Toast.scss",
"./src/Toast": "./src/Toast.tsx",
"./src/Toast.tsx": "./src/Toast.tsx",
"./src/Toast.scss": "./src/Toast.scss",
"./dist/Toast.css": "./dist/Toast.css",
"./Toast.css": "./dist/Toast.css"
},
"files": [
"dist",
"dist/*.css",
"src/Toast.tsx",
"src/Toast.scss",
"**/Toast.*"
],
"scripts": {
"build": "sass src/Toast.scss:dist/Toast.css --style compressed && microbundle",
"dev:styles": "sass src/Toast.scss:dist/Toast.css -w --style compressed",
"dev:scripts": "microbundle watch",
"dev": "concurrently -n \"styles,scripts\" -c \"bgBlue,bgGreen\" \"yarn dev:styles\" \"yarn dev:scripts\""
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lestin": "0.2.2",
"microbundle": "^0.15.1",
"npm-check-updates": "^17.1.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-eslint-cli": "^8.0.1",
"sass": "^1.82.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": false
}
]
}
}
}