@livestore/devtools-vite 0.4.0-dev.9 → 0.4.0
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/README.md +2 -4
- package/dist/devtools-bundle/{data-grid-overlay-editor-BfCIpAPr.js → data-grid-overlay-editor-CR5jUL6u.js} +1 -1
- package/dist/devtools-bundle/devtools-react-bundle-BLoMnEMJ.js +138282 -0
- package/dist/devtools-bundle/devtools-vite.css +1 -1
- package/dist/devtools-bundle/{index-CDK2W5bN.js → index-B6XkRKtG.js} +1 -1
- package/dist/devtools-bundle/index.js +1 -1
- package/dist/devtools-bundle/{mod-2ScWT2NO.js → mod-C9RzS96o.js} +24 -24
- package/dist/devtools-bundle/{number-overlay-editor-MIWubBSP.js → number-overlay-editor-BIISOxdq.js} +174 -166
- package/dist/plugin.d.ts +19 -41
- package/dist/plugin.js +764 -807
- package/dist/release-metadata.json +42 -0
- package/package.json +18 -16
- package/dist/devtools-bundle/devtools-react-bundle-BzK4k2uM.js +0 -146266
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"devtoolsArtifact": {
|
|
4
|
+
"schemaVersion": 1,
|
|
5
|
+
"artifactName": "livestore-devtools-vite",
|
|
6
|
+
"packageName": "@livestore/devtools-vite",
|
|
7
|
+
"artifactVersion": "dt-20260519-ecda82cd",
|
|
8
|
+
"devtoolsVersion": "0.4.0-dev.24",
|
|
9
|
+
"devtoolsProtocolVersion": 1,
|
|
10
|
+
"devtoolsBuildId": "dt-20260519-ecda82cd",
|
|
11
|
+
"builtAt": "2026-05-19T01:23:40.531Z",
|
|
12
|
+
"sourceRevision": "ecda82cdd3a84712a6b1bbf62792a59e8ec15b02",
|
|
13
|
+
"compatibleLivestore": {
|
|
14
|
+
"kind": "range",
|
|
15
|
+
"range": "*"
|
|
16
|
+
},
|
|
17
|
+
"files": {
|
|
18
|
+
"tarball": {
|
|
19
|
+
"name": "livestore-devtools-vite.tgz",
|
|
20
|
+
"sha256": "dc4827699b62eca99a963cd2736c13ec617c993d6a2a306c77fc3f322c7197e4",
|
|
21
|
+
"integrity": "sha512-fXr1FQ6cyJM80nQNZ+RCU8vYAultVgxcN7tuxSlgL5CCHMoYSO2s5xZwjIpnBhK85HbnDNI2jZu1XPk4hm19tA=="
|
|
22
|
+
},
|
|
23
|
+
"chromeZip": {
|
|
24
|
+
"name": "livestore-devtools-chrome.zip",
|
|
25
|
+
"sha256": "1604a9b135cc1e7841cbea47ab900faa10e0884f8a952d063efb1bc9ca3bbcfe",
|
|
26
|
+
"integrity": "sha512-EGwaraUPxdoiAaJge3rZlrV1Y9/QKHzJJgUxK7curTKsnrhiI8VS8tH6C2BcAlxbYQmutrXRTFTFeORhukR37g=="
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"livestoreVersion": "0.4.0",
|
|
31
|
+
"livestoreCertification": {
|
|
32
|
+
"livestoreVersion": "0.4.0",
|
|
33
|
+
"devtoolsBuildId": "dt-20260519-ecda82cd",
|
|
34
|
+
"devtoolsProtocolVersion": 1,
|
|
35
|
+
"status": "passed",
|
|
36
|
+
"testSuite": "tests/integration/src/tests/playwright/devtools",
|
|
37
|
+
"scenarios": [
|
|
38
|
+
"node adapter session loads through Vite and stays connected past 35 seconds"
|
|
39
|
+
],
|
|
40
|
+
"evidence": "DevTools exact-artifact liveness passed for 0.4.0 in https://github.com/livestorejs/livestore/actions/runs/26818008579"
|
|
41
|
+
}
|
|
42
|
+
}
|
package/package.json
CHANGED
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livestore/devtools-vite",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"files": [
|
|
5
|
+
"dist"
|
|
6
|
+
],
|
|
4
7
|
"type": "module",
|
|
5
8
|
"exports": {
|
|
6
|
-
".":
|
|
7
|
-
"types": "./dist/plugin.d.ts",
|
|
8
|
-
"default": "./dist/plugin.js"
|
|
9
|
-
},
|
|
10
|
-
"./build": "./build.ts"
|
|
9
|
+
".": "./dist/plugin.js"
|
|
11
10
|
},
|
|
12
11
|
"dependencies": {
|
|
13
|
-
"@livestore/adapter-web": "0.4.0
|
|
14
|
-
"@livestore/utils": "0.4.0
|
|
12
|
+
"@livestore/adapter-web": "0.4.0",
|
|
13
|
+
"@livestore/utils": "0.4.0",
|
|
15
14
|
"vite": "*"
|
|
16
15
|
},
|
|
17
|
-
"devDependencies_": {
|
|
18
|
-
"Note": "All dependendcies are bundled except for `@livestore/adapter-web`"
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
16
|
"peerDependencies": {
|
|
24
|
-
"vite": "^7.1
|
|
17
|
+
"vite": "^7.3.1"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/livestorejs/livestore",
|
|
22
|
+
"directory": "packages/@livestore/devtools-vite"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/livestorejs/livestore/tree/main/packages/@livestore/devtools-vite",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/livestorejs/livestore/issues"
|
|
25
27
|
}
|
|
26
|
-
}
|
|
28
|
+
}
|