-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.84 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
{
"name": "@ulinkly/react-native",
"version": "0.1.0",
"description": "Official ULink deep linking SDK for React Native and Expo.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"ios",
"android/src",
"android/build.gradle",
"plugin/build",
"app.plugin.js",
"expo-module.config.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "expo-module build && tsc --build plugin",
"build:plugin": "tsc --build plugin",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"typecheck": "tsc --noEmit",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly"
},
"keywords": [
"ulink",
"deep-links",
"dynamic-links",
"expo",
"react-native",
"deferred-deep-linking"
],
"repository": {
"type": "git",
"url": "https://github.com/FlywheelStudio/ulink-react-native.git"
},
"bugs": {
"url": "https://github.com/FlywheelStudio/ulink-react-native.git/issues"
},
"author": "ULink Team",
"license": "MIT",
"homepage": "https://github.com/FlywheelStudio/ulink-react-native.git#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@expo/config-plugins": "^56.0.9",
"@types/jest": "^29.2.1",
"@types/react": "~19.1.1",
"babel-preset-expo": "~55.0.8",
"eslint": "~9.39.4",
"eslint-config-universe": "^15.0.3",
"expo": "^56.0.11",
"expo-module-scripts": "^56.0.3",
"jest": "^29.7.0",
"jest-expo": "~56.0.4",
"prettier": "^3.0.0",
"react": "^19.2.7",
"react-native": "^0.82.1",
"typescript": "^5.9.2"
},
"jest": {
"preset": "jest-expo",
"roots": [
"<rootDir>/src",
"<rootDir>/plugin/src"
]
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}