-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.6 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
{
"name": "appsprint-react-native",
"version": "1.1.8",
"description": "AppSprint mobile attribution SDK for React Native",
"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",
"ios",
"android",
"plugin",
"app.plugin.js",
"appsprint-react-native.podspec",
"!**/__tests__",
"!lib/**/*.map",
"!ios/build",
"!android/build",
"!android/.gradle"
],
"scripts": {
"test": "node --test test/appsprint-sdk.test.cjs test/release-artifacts.test.cjs",
"typecheck": "tsc --noEmit",
"build": "bob build",
"prepare": "bob build",
"validate:release": "node scripts/validate-release-artifacts.cjs",
"prepack": "npm run validate:release"
},
"keywords": [
"react-native",
"attribution",
"mobile",
"analytics",
"appsprint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/getappsprint/appsprint-react-native.git"
},
"author": "AppSprint",
"license": "MIT",
"homepage": "https://appsprint.app",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.71.0"
},
"devDependencies": {
"react-native-builder-bob": "^0.35.0",
"typescript": "^5.7.0",
"react": "^18.2.0",
"react-native": "^0.76.0"
},
"dependencies": {},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"expo": {
"plugins": [
"./app.plugin.js"
]
}
}