forked from andpor/react-native-sqlite-storage
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.89 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.89 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
{
"name": "react-native-sqlcipher-storage",
"version": "0.0.5",
"description": "SQLCipher bindings for React Native (Android & iOS)",
"author": "Axsy",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./preload": "./electron/preload.js",
"./main": "./electron/main.js"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:android": "react-native run-android --root example/mobile/",
"start:ios": "react-native run-ios --project-path example/mobile/ios --scheme example",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{js,ts,d.ts}\" \"electron/**/*.js\"",
"format:check": "prettier --check \"src/**/*.{js,ts,d.ts}\" \"electron/**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"check": "npm run lint && npm run format:check && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/axsy-dev/react-native-sqlcipher-storage.git"
},
"keywords": [
"react-native-sqlcipher-storage",
"react-native-sqlite",
"react-component",
"reactnative",
"react-native",
"sqlite",
"sqlite3",
"ios",
"android",
"promise",
"cordova-sqlcipher-adapter"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andpor/react-native-sqlcipher-storage/issues"
},
"homepage": "https://github.com/axsy-dev/react-native-sqlcipher-storage",
"peerDependencies": {
"electron": "*",
"react": "*",
"react-dom": "*",
"react-native": "*",
"react-native-web": "*"
},
"peerDependenciesMeta": {
"electron": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-native-web": {
"optional": true
},
"react-native-windows": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@eslint/js": "^9.37.0",
"@react-native/babel-preset": "0.73.21",
"@react-native/eslint-config": "0.73.2",
"@react-native/metro-config": "0.73.5",
"@react-native/typescript-config": "0.73.1",
"@rnx-kit/metro-config": "^2.1.0",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^10.1.8",
"eslint-js": "github:eslint/js",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^19.2.0",
"react-native": "^0.73.0",
"react-native-test-app": "^4.4.12",
"react-native-web": "^0.21.1",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"dependencies": {
"@journeyapps/sqlcipher": "5.3.1"
},
"files": [
"src",
"react-native-sqlcipher-storage.podspec",
"android",
"ios",
"common",
"electron"
]
}