forked from ashr81/react-tiny-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "preact-tiny-toast",
"version": "1.0.2",
"private": false,
"main": "lib/index.js",
"module": "lib/index.js",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-typescript"
]
},
"types": "lib/types/preact-tiny-toast.d.ts",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/preset-typescript": "^7.10.4",
"typescript": "^5.0.2",
"yarn": "^1.22.19"
},
"peerDependencies": {
"preact": "^10.15.0"
},
"scripts": {
"start": "tsc -w",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --copy-files --extensions \".ts,.tsx\"",
"build:clean": "rm -rf lib",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"pub": "yarn build && npm publish",
"publish": "yarn build && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/tgm-git/preact-tiny-toast.git",
"directory": "packages/preact-tiny-toast"
},
"bugs": {
"url": "https://github.com/tgm-git/preact-tiny-toast/issues"
},
"homepage": "https://github.com/tgm-git/preact-tiny-toast#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"preact",
"preact-toast-notifications",
"preact-notifications",
"preact-tiny-toast",
"toast-notifications"
]
}