-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (74 loc) · 1.67 KB
/
package.json
File metadata and controls
75 lines (74 loc) · 1.67 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
{
"name": "@dittolive/ditto-react-native-tools",
"version": "1.0.0",
"description": "React Native library for Ditto tools integration",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "lib/module/index.js",
"source": "src/index.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!example",
"!example/**"
],
"scripts": {
"typescript": "tsc --noEmit",
"prepare": "bob build",
"example": "yarn --cwd example"
},
"devDependencies": {
"@dittolive/ditto": "4.11.6",
"react-native-builder-bob": "^0.20.0",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@dittolive/ditto": ">=4.11.4",
"react": "*",
"react-native": "*",
"@types/react": "*",
"@dr.pogodin/react-native-fs": ">=2.22.0",
"react-native-zip-archive": ">=7.0.2"
},
"resolutions": {
"react-native": "0.77.1"
},
"keywords": [
"react-native",
"ios",
"android",
"ditto",
"tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/getditto/react-native-ditto-tools.git"
},
"author": "DittoLive Inc <support@ditto.com>",
"license": "MIT",
"bugs": {
"url": "https://support.ditto.live"
},
"homepage": "https://github.com/getditto/react-native-ditto-tools#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}