-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.04 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
{
"name": "tanstack-query-dev-tools-expo-plugin",
"version": "0.1.1",
"description": "A Expo plugin for Tanstack Query DevTools",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"scripts": {
"all": "rm -rf build dist tanstack-query-dev-tools-expo-plugin-0.1.0.tgz && npm run build:all && npm pack",
"build": "expo-module build",
"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",
"tanstack",
"query",
"react-query",
"react-native",
"expo-react-native",
"expo-react-native-tanstack-query-devtools",
"tanstack-query",
"tanstack-query-devtools",
"tanstack-query-devtools-expo",
"tanstack-query-devtools-expo-react-native",
"tanstack-query-devtools-expo-plugin",
"tanstack-query-devtools-expo-plugin-react-native",
"tanstack-query-devtools-expo-plugin-webui",
"tanstack-query-devtools-expo-plugin-webui-react-native",
"React-Query-Dev-Tools"
],
"author": "LovesWorking (https://github.com/LovesWorking)",
"files": [
"build",
"dist",
"expo-module.config.json"
],
"license": "MIT",
"dependencies": {
"@expo/metro-runtime": "~4.0.1",
"expo-device": "~7.0.2"
},
"devDependencies": {
"@tanstack/react-query": "^5.66.9",
"expo": "~52.0.3",
"expo-module-scripts": "^4.0.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@tanstack/react-query": "^4.0.0 || ^5.0.0",
"expo": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/LovesWorking/tanstack-query-dev-tools-expo-plugin"
},
"homepage": "https://github.com/LovesWorking/tanstack-query-dev-tools-expo-plugin"
}