-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.15 KB
/
package.json
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": "advents-react-native",
"description": "Advents React Native SDK for sending events to the Advents API.",
"version": "0.0.23",
"author": "Gabriel Moresco gabriel@advents.io (/~https://github.com/gabriel-moresco)",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/advents-io/advents-react-native/issues"
},
"homepage": "https://docs.advents.io",
"repository": {
"type": "git",
"url": "git+/~https://github.com/advents-io/advents-react-native.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --fix && prettier . --write",
"build": "tsup",
"use-build": "./scripts/use-build.sh",
"prepublishOnly": "pnpm build",
"publish": "pnpm publish"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11",
"react-native-uuid": "^2.0.3"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "~5.4.5"
},
"peerDependencies": {
"@react-native-clipboard/clipboard": "*",
"@sparkfabrik/react-native-idfa-aaid": "*",
"expo-application": "*",
"expo-clipboard": "*",
"expo-constants": "*",
"expo-device": "*",
"expo-tracking-transparency": "*",
"react-native": "*",
"react-native-device-info": "*"
},
"peerDependenciesMeta": {
"expo-application": {
"optional": true
},
"expo-device": {
"optional": true
},
"expo-clipboard": {
"optional": true
},
"expo-constants": {
"optional": true
},
"expo-tracking-transparency": {
"optional": true
},
"react-native-device-info": {
"optional": true
},
"@react-native-clipboard/clipboard": {
"optional": true
},
"@sparkfabrik/react-native-idfa-aaid": {
"optional": true
}
}
}