-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "smooth-push",
"version": "1.5.12",
"author": "CK",
"repository": {
"type": "git",
"url": "https://github.com/kurucaner/smooth-push"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/react": "^19.0.7",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=2.19.0",
"react-native-reanimated": ">=3.10.0"
},
"description": "Smooth Toast: Lightweight Toast Notifications Inspired by Push Notifications for React Native",
"keywords": [
"react native",
"expo",
"push",
"notification",
"toast"
],
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"format": "prettier --write .",
"lint": "prettier --check . && tsc",
"pub": "rimraf dist && npm run build && npm publish"
}
}