-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.71 KB
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
{
"name": "@synonymdev/react-native-toast",
"version": "0.1.0",
"description": "Native toast notifications for React Native",
"keywords": [
"react-native",
"toast",
"ios",
"android"
],
"homepage": "https://github.com/synonymdev/react-native-toast#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/react-native-toast.git"
},
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/commonjs/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"scripts": {
"build": "bob build",
"clean": "node -e \"require('fs').rmSync('lib', { recursive: true, force: true })\"",
"prepack": "yarn clean && yarn build",
"test": "jest"
},
"exports": {
".": {
"react-native": "./src/index.ts",
"source": "./src/index.ts",
"import": {
"types": "./lib/typescript/module/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/index.d.ts",
"default": "./lib/commonjs/index.js"
},
"default": "./lib/commonjs/index.js"
}
},
"files": [
"android/build.gradle",
"android/src",
"API.md",
"DEVELOPMENT.md",
"ios",
"lib/commonjs",
"lib/module",
"lib/typescript",
"src",
"SynonymReactNativeToast.podspec"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native/babel-preset": "0.86.0",
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"react": "19.2.3",
"react-native": "0.86.0",
"react-native-builder-bob": "^0.43.0",
"typescript": "^5.8.3"
},
"license": "MIT"
}