forked from andymatuschak/react-native-leveldown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
44
45
46
47
48
{
"name": "react-native-leveldown",
"title": "React Native Leveldown",
"version": "1.0.1",
"description": "React Native native module for LevelJS, compatible with abstract-leveldown",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andymatuschak/react-native-leveldown.git",
"baseUrl": "https://github.com/andymatuschak/react-native-leveldown"
},
"keywords": [
"react-native"
],
"author": {
"name": "Andy Matuschak",
"email": "andy@andymatuschak.org"
},
"files": [
"dist",
"ios",
"android",
"react-native-leveldown.podspec"
],
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x"
},
"devDependencies": {
"@types/abstract-leveldown": "^5.0.1",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-native": "^0.63.3",
"typescript": "^4.0.5"
},
"dependencies": {
"abstract-leveldown": "^6.3.0",
"buffer": "^6.0.2",
"level-supports": "^1.0.1"
}
}