-
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.85 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.85 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": "@metarouter/react-native-sdk",
"version": "1.7.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib",
"ios",
"android",
"react-native.config.js",
"metarouter-react-native-sdk.podspec"
],
"scripts": {
"clean": "rm -rf lib",
"build": "tsc --project tsconfig.build.json",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react-native",
"sdk",
"metarouter"
],
"author": "Christopher Houdlette",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/metarouterio/react-native-sdk"
},
"dependencies": {
"react-native-uuid": "^2.0.3"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=2.2.0",
"react": ">=16.8.0",
"react-native": ">=0.73.0",
"react-native-device-info": ">=14.0.4"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@react-native-async-storage/async-storage": ">=2.2.0",
"@react-native/eslint-config": "^0.84.0-nightly-20260106-36a0d9ef6",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.7",
"eslint": "^9.39.2",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.7.4",
"react-native-device-info": "^15.0.1",
"typescript": "^5.9.3"
},
"react-native": "./lib/index.js",
"lint-staged": {
"*.{ts,js}": "eslint --fix"
}
}