-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.41 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.41 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
98
99
100
101
102
103
{
"name": "@parrotnavy/rn-native-updates",
"version": "0.11.0",
"description": "React Native app update checker with hooks support. Uses Play Core for Android and iTunes Lookup API for iOS.",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"android",
"ios",
"*.podspec",
"!ios/build",
"!android/build",
"!**/__tests__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"build": "bob build",
"clean": "del-cli lib android/build ios/build",
"prepare": "bob build",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check src/",
"check:fix": "biome check --write .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"react-native",
"expo",
"app-update",
"version-check",
"play-store",
"app-store",
"in-app-update"
],
"repository": {
"type": "git",
"url": "https://github.com/parrotnavy/rn-native-updates.git"
},
"author": "ParrotNavy",
"license": "MIT",
"bugs": {
"url": "https://github.com/parrotnavy/rn-native-updates/issues"
},
"homepage": "https://github.com/parrotnavy/rn-native-updates#readme",
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@testing-library/react-native": "^13.3.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.0",
"del-cli": "^6.0.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-native": "^0.76.0",
"react-native-builder-bob": "^0.35.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.73.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "RNNativeUpdatesSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.parrotnavy.rnnativeupdates"
}
}
}