forked from skb1129/react-native-change-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "react-native-change-icon",
"title": "React Native Change Icon",
"version": "5.0.0",
"description": "Change application icon programmatically in React-Native.",
"main": "dist/index.js",
"source": "src/index.ts",
"react-native": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"android",
"ios",
"dist/**/*",
"NativeChangeIcon.ts",
"react-native-change-icon.podspec",
"react-native.config.js",
"README.md"
],
"scripts": {
"build": "tsc"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/skb1129/react-native-change-icon",
"author": "Surya Kant Bansal <[email protected]> (https://github.com/skb1129)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skb1129/react-native-change-icon/issues"
},
"homepage": "https://github.com/skb1129/react-native-change-icon#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"react-native": "^0.72.4",
"@types/react-native": "^0.72.2",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react-native": "*"
},
"packageManager": "^[email protected]",
"codegenConfig": {
"name": "RNChangeIconSpec",
"type": "all",
"jsSrcsDir": ".",
"android": {
"javaPackageName": "com.facebook.fbreact.specs"
}
}
}