-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.25 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
{
"name": "telemetrydeck-expo-plugin",
"version": "1.0.3",
"description": "Extension plugin for TelemetryDeck React SDK that automatically enriches every signal with rich Expo/React Native environment data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"prepublishOnly": "npm run build && npm test",
"clean": "rm -rf dist"
},
"keywords": [
"telemetrydeck",
"expo",
"react-native",
"analytics",
"telemetry",
"plugin",
"sdk"
],
"author": "Kirill Batalin",
"license": "MIT",
"homepage": "https://github.com/kbatalin/telemetrydeck-expo-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kbatalin/telemetrydeck-expo-plugin.git"
},
"bugs": {
"url": "https://github.com/kbatalin/telemetrydeck-expo-plugin/issues"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.0.0",
"expo": ">=49.0.0",
"expo-application": ">=5.0.0",
"expo-device": ">=5.0.0",
"expo-localization": ">=14.0.0",
"react": ">=16.8.0",
"react-native": ">=0.70.0"
},
"dependencies": {
"@typedigital/telemetrydeck-react": "^0.4.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.24.0",
"@eslint/js": "^9.31.0",
"@react-native-async-storage/async-storage": "^1.0.0",
"@testing-library/react-native": "^12.1.5",
"@types/jest": "^30.0.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"babel-jest": "^29.7.0",
"eslint": "^9.31.0",
"expo": ">=49.0.0",
"expo-application": ">=5.0.0",
"expo-device": ">=5.0.0",
"expo-localization": ">=14.0.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"react": "^18.3.0",
"react-native": "^0.76.0",
"react-test-renderer": "^18.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}