-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 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
{
"name": "@parrotnavy/react-native-dynamic-splash",
"version": "1.0.0",
"description": "Native-first dynamic splash screen with remote config, animated GIF/APNG support, and background asset caching for React Native",
"homepage": "https://github.com/parrotnavy/react-native-dynamic-splash",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "biome check src",
"format": "biome format src --write",
"prebuild": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"react-native",
"splash",
"dynamic",
"full-screen banner",
"expo"
],
"author": "Jeremy Kwon <kwonkiseok7@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-fs": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@expo/config-plugins": "^54.0.4",
"@expo/config-types": "^54.0.10",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"jest": "^29.7.0",
"react-native-fs": "^2.20.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"type": "commonjs",
"resolutions": {
"@types/react": "^18.0.0"
},
"files": [
"dist/",
"android/src/",
"android/build.gradle",
"ios/**/*.swift",
"ios/**/*.h",
"ios/**/*.m",
"react-native-dynamic-splash.podspec",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/parrotnavy/react-native-dynamic-splash.git"
},
"bugs": {
"url": "https://github.com/parrotnavy/react-native-dynamic-splash/issues"
},
"engines": {
"node": ">=20.0.0"
},
"expo": {
"name": "react-native-dynamic-splash",
"plugin": "./app.plugin.js"
}
}