-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
package.json
File metadata and controls
84 lines (84 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@seenn/react-native",
"version": "0.9.11",
"description": "Seenn React Native SDK - Job state transport with iOS Live Activity support (Expo compatible)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/seenn-io/react-native.git"
},
"homepage": "https://github.com/seenn-io/react-native#readme",
"bugs": {
"url": "https://github.com/seenn-io/react-native/issues"
},
"author": "Seenn <hello@seenn.io>",
"keywords": [
"seenn",
"react-native",
"expo",
"push-notifications",
"live-activity",
"polling",
"real-time",
"job-tracking",
"ios",
"android",
"open-source"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"expo-live-activity": ">=0.1.0",
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"peerDependenciesMeta": {
"expo-live-activity": {
"optional": true
}
},
"dependencies": {
"@react-native-community/netinfo": "^11.3.1",
"@seenn/types": "^0.4.0",
"eventemitter3": "^5.0.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-native": "^0.72.8",
"react": "^18.2.0",
"react-native": "^0.72.8",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"files": [
"dist",
"src",
"android",
"ios",
"templates",
"scripts",
"README.md",
"LICENSE",
"SeennReactNative.podspec"
],
"react-native": "src/index.ts",
"codegenConfig": {
"name": "SeennReactNativeSpec",
"type": "modules",
"jsSrcsDir": "src"
},
"publishConfig": {
"access": "public"
}
}