-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "react-native-appwrite",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
"version": "0.5.0",
"license": "BSD-3-Clause",
"main": "dist/cjs/sdk.js",
"exports": {
".": {
"import": "./dist/esm/sdk.js",
"require": "./dist/cjs/sdk.js",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"module": "dist/esm/sdk.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/appwrite/sdk-for-react-native"
},
"scripts": {
"build": "npm run build:types && npm run build:libs",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
"build:libs": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-typescript": "8.3.2",
"playwright": "1.15.0",
"rollup": "2.75.4",
"serve-handler": "6.1.0",
"tslib": "2.4.0",
"typescript": "4.7.2"
},
"dependencies": {
"expo-file-system": "16.0.8",
"react-native": "^0.73.6"
},
"peerDependencies": {
"expo": "*",
"react-native": "*"
}
}