-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.94 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
{
"name": "@comapeo/core-react-native",
"version": "1.0.0-pre.9",
"description": "CoMapeo Core for React Native",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"default": "./build/index.js"
},
"./sentry": {
"types": "./build/sentry.d.ts",
"import": "./build/sentry.js",
"default": "./build/sentry.js"
},
"./app.plugin": "./app.plugin.js",
"./package.json": "./package.json"
},
"bin": {
"comapeo-rn-upload-sourcemaps": "./build/cli/upload-sourcemaps.js"
},
"files": [
"expo-module.config.json",
"app.plugin.js",
"android/build.gradle",
"android/CMakeLists.txt",
"android/src/debug/",
"android/src/main/",
"android/libnode/",
"build/",
"ios/*.{h,m,mm,swift,hpp,cpp}",
"!ios/Package.swift",
"ios/ComapeoCore.podspec",
"ios/ComapeoCoreSourcemaps.podspec",
"ios/NodeMobile.xcframework",
"ios/Frameworks/",
"ios/nodejs-project/",
"ios/nodejs-sourcemaps/",
"src/"
],
"devEngines": {
"packageManager": {
"name": "npm",
"version": "^11.16.0",
"onFail": "warn"
},
"runtime": {
"name": "node",
"version": "^24",
"onFail": "warn"
}
},
"scripts": {
"setup": "npm run download:nodejs-mobile && npm run backend:build && npm --prefix apps/integration install && npm --prefix apps/e2e install",
"build": "expo-module build --watch false",
"clean": "expo-module clean",
"lint": "expo-module lint --cache .",
"test": "expo-module test",
"test:scripts": "node --test 'scripts/lib/*.test.mjs'",
"test:swift": "cd ios && swift test",
"test:android": "./scripts/run-instrumented-tests.sh",
"test:android:unit": "./scripts/run-instrumented-tests.sh --unit-only",
"test:ios": "npm --prefix apps/integration run test:ios",
"prepare": "node scripts/write-version.mjs && node scripts/check-sentry-cocoa-pin.mjs && expo-module build --watch false",
"prepublishOnly": "expo-module prepublishOnly",
"prepack": "node scripts/write-version.mjs && npm run backend:build",
"open:ios": "xed apps/integration/ios",
"open:android": "open -a \"Android Studio\" apps/integration/android",
"download:nodejs-mobile": "./scripts/download-nodejs-mobile.sh",
"backend:install": "npm ci --no-dry-run --prefix backend",
"prebackend:build": "npm run backend:install",
"backend:build": "node ./scripts/build-backend.ts",
"backend:test": "npm --prefix backend test",
"e2e:ios": "npm --prefix apps/e2e run build:ios",
"e2e:android": "npm --prefix apps/e2e run build:android",
"e2e:test": "maestro test maestro/e2e.yaml"
},
"keywords": [
"react-native",
"expo",
"@comapeo/core-react-native",
"ComapeoCore"
],
"repository": "https://github.com/digidem/comapeo-core-react-native",
"bugs": {
"url": "https://github.com/digidem/comapeo-core-react-native/issues"
},
"author": "Awana Digital <developer@awana.digital> (https://github.com/digidem)",
"license": "MIT",
"homepage": "https://github.com/digidem/comapeo-core-react-native#readme",
"devDependencies": {
"@eslint/compat": "2.0.5",
"@eslint/js": "9.39.4",
"@sentry/react-native": "^8.13.0",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"babel-preset-expo": "^56.0.15",
"eslint": "9.39.4",
"execa": "9.6.1",
"expo": "^56.0.12",
"expo-module-scripts": "56.0.3",
"globals": "17.5.0",
"prettier": "3.8.3",
"react": "19.2.3",
"react-native": "0.85.3",
"type-fest": "5.6.0",
"typescript-eslint": "8.59.0"
},
"peerDependencies": {
"@sentry/react-native": "^8.13.0",
"expo": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"@comapeo/ipc": "9.0.0"
},
"allowScripts": {
"@sentry/cli": false,
"better-sqlite3": false,
"fsevents": false,
"protobufjs": false
}
}