-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 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
{
"name": "expo-drizzle-studio-plugin",
"version": "0.1.1",
"description": "A new DevTools plugin created by create-dev-plugin",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "expo-module build",
"pack": "npm pack",
"build:all": "expo-module prepare && cd webui && npx expo export -p web --output-dir ../dist",
"clean": "expo-module clean",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepare && expo-module prepublishOnly && cd webui && npx expo export -p web --output-dir ../dist",
"web:dev": "cd webui && npx expo start -w",
"web:export": "cd webui && npx expo export -p web --output-dir ../dist"
},
"keywords": [
"expo",
"devtools"
],
"files": [
"build",
"dist",
"expo-module.config.json"
],
"license": "MIT",
"dependencies": {
"expo-sqlite": "^15.0.3"
},
"devDependencies": {
"expo": "~52.0.0",
"expo-module-scripts": "^3.1.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"expo": "*"
}
}