-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.42 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@sendbird/uikit-react-native-foundation",
"version": "3.12.6",
"description": "A foundational UI kit for building chat-enabled React Native apps.",
"keywords": [
"sendbird",
"uikit",
"React Native",
"chat",
"messaging",
"UI components",
"customizable",
"theme",
"design system"
],
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/typescript/src/index.d.ts",
"react-native": "./src/index.ts",
"require": "./lib/commonjs/index.js",
"import": "./lib/module/index.js"
}
},
"files": [
"src",
"lib",
"!**/__tests__"
],
"sideEffects": false,
"scripts": {
"test": "jest",
"build": "bob build",
"clean": "del lib",
"publish:next": "npm publish --tag next",
"publish:local": "yalc publish",
"generate-icons": "node src/assets/bundle-icons.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sendbird/sendbird-uikit-react-native.git",
"directory": "packages/uikit-react-native-foundation"
},
"author": "Sendbird <support@sendbird.com>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/sendbird/sendbird-uikit-react-native.git/issues"
},
"homepage": "https://github.com/sendbird/sendbird-uikit-react-native.git#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@sendbird/uikit-utils": "3.12.6"
},
"devDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"react": "19.1.1",
"react-native": "0.82.1",
"react-native-builder-bob": "^0.18.0",
"react-native-fast-image": "^8.6.3",
"react-native-safe-area-context": "^5.5.2",
"typescript": "5.8.3"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-native": ">=0.65.0",
"react-native-fast-image": ">=8.5.11",
"react-native-safe-area-context": ">=3.3.2"
},
"peerDependenciesMeta": {
"react-native-fast-image": {
"optional": true
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}