-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 867 Bytes
/
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
{
"name": "kysely-expo",
"version": "3.0.0",
"description": "Expo SQLite support for Kysely",
"author": "mphill",
"scripts": {
"build": "tsc && rm -rf example/node_modules/kysely-expo && mkdir example/node_modules/kysely-expo && cp package.json example/node_modules/kysely-expo && cp -R dist example/node_modules/kysely-expo",
"publish": "tsc && npm publish",
"lint": "eslint ."
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"license": "MIT",
"peerDependencies": {
"expo-sqlite": "^15.0.3",
"kysely": "^0.27.4"
},
"dependencies": {
"expo-sqlite": "^15.0.3",
"kysely": "^0.27.4"
},
"devDependencies": {
"@types/react": "^18.3.12",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-universe": "^12.1.0",
"prettier": "^3.3.3"
}
}