-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.2 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.2 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@formo/analytics-react-native",
"version": "0.1.6",
"description": "Formo Analytics SDK for React Native - Track wallet events and user analytics in mobile dApps",
"packageManager": "pnpm@11.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/getformo/sdk-react-native.git"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"exports": {
".": {
"import": "./lib/module/index.js",
"require": "./lib/commonjs/index.js",
"types": "./lib/typescript/index.d.ts"
}
},
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"author": "Formo <hello@formo.so>",
"license": "MIT",
"keywords": [
"react-native",
"analytics",
"crypto",
"web3",
"wallet",
"ethereum",
"wagmi",
"mobile",
"formo"
],
"scripts": {
"build": "bob build",
"clean": "rm -rf lib",
"lint": "eslint '{src,test}/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"version": "node scripts/update-version.js && git add src/version.ts",
"preview-release": "bash scripts/preview-release-notes.sh"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.17.0",
"@tanstack/react-query": ">=5.0.0",
"expo-application": ">=5.0.0",
"expo-device": ">=5.0.0",
"react": ">=18.0.0",
"react-native": ">=0.70.0",
"react-native-device-info": ">=10.0.0",
"wagmi": ">=2.0.0"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": false
},
"@tanstack/react-query": {
"optional": true
},
"expo-application": {
"optional": true
},
"expo-device": {
"optional": true
},
"react-native-device-info": {
"optional": true
},
"wagmi": {
"optional": true
}
},
"dependencies": {
"@react-native-community/netinfo": "11.5.1",
"ethereum-cryptography": "3.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@react-native-async-storage/async-storage": "^1.21.0",
"@react-native/babel-preset": "^0.77.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"babel-jest": "^29.7.0",
"eslint": "^10.1.0",
"expo-application": "^6.0.0",
"expo-device": "^55.0.17",
"jest": "^29.7.0",
"react": "^18.3.1",
"react-native": "^0.77.0",
"react-native-builder-bob": "^0.23.0",
"react-native-device-info": "^14.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.57.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}