@livestore/devtools-expo 0.3.0-dev.32 → 0.3.0-dev.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.tsbuildinfo +1 -1
- package/package.json +8 -3
- package/expo-module.config.json +0 -6
- package/tmp/pack.tgz +0 -0
- package/tsconfig.json +0 -15
- package/webui/index.html +0 -16
package/package.json
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livestore/devtools-expo",
|
|
3
|
-
"version": "0.3.0-dev.
|
|
3
|
+
"version": "0.3.0-dev.34",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"types": "./dist/index.d.cts",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@livestore/adapter-node": "0.3.0-dev.
|
|
8
|
-
"@livestore/utils": "0.3.0-dev.
|
|
7
|
+
"@livestore/adapter-node": "0.3.0-dev.34",
|
|
8
|
+
"@livestore/utils": "0.3.0-dev.34"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@types/node": "^22.13.10",
|
|
12
12
|
"expo": "^53.0.0-preview.5",
|
|
13
13
|
"vite": "^6.2.1"
|
|
14
14
|
},
|
|
15
|
+
"files": [
|
|
16
|
+
"package.json",
|
|
17
|
+
"src",
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
15
20
|
"main": "./dist/index.cjs",
|
|
16
21
|
"peerDependencies": {
|
|
17
22
|
"expo": "^53.0.0-preview.5"
|
package/expo-module.config.json
DELETED
package/tmp/pack.tgz
DELETED
|
Binary file
|
package/tsconfig.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../../tsconfig.base.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "./dist",
|
|
5
|
-
"rootDir": "./src",
|
|
6
|
-
"verbatimModuleSyntax": true,
|
|
7
|
-
"tsBuildInfoFile": "./dist/.tsbuildinfo"
|
|
8
|
-
},
|
|
9
|
-
"include": ["./src", "src/types.d.ts"],
|
|
10
|
-
"references": [
|
|
11
|
-
{ "path": "../adapter-web" },
|
|
12
|
-
{ "path": "../adapter-node" },
|
|
13
|
-
{ "path": "../utils" },
|
|
14
|
-
]
|
|
15
|
-
}
|
package/webui/index.html
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>LiveStore DevTools Redirect</title>
|
|
7
|
-
<script>
|
|
8
|
-
const currentUrl = new URL(window.location.href);
|
|
9
|
-
const redirectUrl = `http://localhost:${currentUrl.port}/_livestore/expo?autoconnect`;
|
|
10
|
-
window.location.href = redirectUrl;
|
|
11
|
-
</script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<p>If you are not redirected, <a href="javascript:void(0);" onclick="window.location.href=redirectUrl">click here</a>.</p>
|
|
15
|
-
</body>
|
|
16
|
-
</html>
|