-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.86 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 2.86 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@op-engineering/op-sqlite",
"version": "0.0.0",
"description": "Fastest SQLite for React Native (with node.js support)",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"react-native": "src/index",
"exports": {
".": {
"source": "./src/index.ts",
"node": "./node/dist/index.js",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"node/dist",
"node/package.json",
"*.podspec",
"*.rb",
"react-native.config.js",
"ios/**.xcframework",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test:node": "yarn workspace node test",
"example": "yarn workspace op_sqlite_example",
"typecheck": "tsc",
"prepare": "bob build && yarn build:node",
"build:node": "yarn workspace node build",
"pods": "cd example && yarn pods",
"clang-format-check": "clang-format -i cpp/*.cpp cpp/*.h"
},
"keywords": [
"react-native",
"ios",
"android",
"node",
"sqlite",
"database"
],
"repository": "https://github.com/OP-Engineering/op-sqlite",
"author": "Oscar Franco <ospfranco@gmail.com> (https://github.com/ospfranco)",
"license": "MIT",
"bugs": {
"url": "https://github.com/OP-Engineering/op-sqlite/issues"
},
"homepage": "https://github.com/OP-Engineering/op-sqlite#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"better-sqlite3": "^12.5.0",
"clang-format": "^1.8.0",
"jest": "^29.5.0",
"react": "19.1.1",
"react-native": "0.82.1",
"react-native-builder-bob": "^0.40.15",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"workspaces": [
"example",
"node"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "OPSQLiteSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.op.sqlite"
}
},
"create-react-native-library": {
"languages": "kotlin-objc",
"type": "turbo-module",
"version": "0.52.1"
},
"packageManager": "yarn@4.11.0"
}