-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.77 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
{
"name": "rnc-theme",
"version": "0.0.95",
"funding": {
"type": "github",
"url": "https://github.com/masumrpg/react-native-components"
},
"homepage": "https://rnc.masum.cloud/",
"scripts": {
"build": "bob build"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.lib.json",
"tsc": "../../node_modules/.bin/tsc"
}
]
]
},
"main": "./dist/commonjs/index.js",
"module": "./dist/module/index.js",
"types": "./dist/typescript/index.d.ts",
"exports": {
".": {
"types": "./dist/typescript/index.d.ts",
"import": "./dist/module/index.js",
"require": "./dist/commonjs/index.js",
"default": "./src/index.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"keywords": [
"react-native",
"rnc-theme",
"mobile"
],
"author": "Masum",
"license": "MIT",
"peerDependencies": {
"react": ">=19.0.0",
"react-native": ">=0.79.3",
"react-native-reanimated": ">=3",
"react-native-gesture-handler": ">=2",
"@react-native-async-storage/async-storage": ">=2",
"lucide-react-native": ">=0.513.0",
"react-native-calendars": ">=1.1286.0",
"@react-navigation/native": ">=6",
"react-native-safe-area-context": ">=4",
"expo-localization": ">=16.1.5",
"i18n-js": ">=4.5.1",
"@shopify/flash-list": ">=1.8.3"
},
"devDependencies": {
"@types/react": ">=19.0.14",
"typescript": ">=5",
"@types/color": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masumrpg/react-native-components.git",
"directory": "libs/rnc-theme"
}
}