xplorajs 0.1.4 → 0.1.6
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/commands/dev.js +1 -1
- package/package.json +39 -39
package/dist/commands/dev.js
CHANGED
|
@@ -4,7 +4,7 @@ import { serve } from "bun";
|
|
|
4
4
|
import { watch } from "chokidar";
|
|
5
5
|
import React from "react";
|
|
6
6
|
import { WebSocketServer } from "ws";
|
|
7
|
-
import { renderToStream } from "
|
|
7
|
+
import { renderToStream } from "xplorajs-react";
|
|
8
8
|
import { build } from "./build";
|
|
9
9
|
const pages = new Map();
|
|
10
10
|
async function loadPages() {
|
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "xplorajs",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"xplorajs": "./dist/cli.mjs"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "bun run build --watch",
|
|
17
|
+
"build": "swc src -d dist --config-file .swcrc",
|
|
18
|
+
"prepublishOnly": "bun run build"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@swc/cli": "^0.1.65",
|
|
22
|
+
"@swc/core": "^1.11.24",
|
|
23
|
+
"chokidar": "^3.6.0",
|
|
24
|
+
"commander": "^11.1.0",
|
|
25
|
+
"fast-glob": "^3.3.3",
|
|
26
|
+
"ws": "^8.18.2",
|
|
27
|
+
"xplorajs-react": "^0.1.2"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/bun": "^1.2.13",
|
|
31
|
+
"@types/ws": "^8.18.1",
|
|
32
|
+
"react-refresh": "^0.17.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"react": "^19.1.0",
|
|
36
|
+
"react-dom": "^19.1.0"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
}
|
|
41
41
|
}
|