pi-web 0.13.0 → 0.13.2
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/build/server/rpc.js +2 -3
- package/build/server/server.js +57 -23
- package/build/server/sessions.js +18 -26
- package/dist/assets/index-BEnbXRXM.js +46 -0
- package/dist/index.html +1 -1
- package/package.json +8 -1
- package/dist/assets/index-CmLShYTq.js +0 -46
package/dist/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>pi-web</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-BEnbXRXM.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-CtNa_SgO.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-web",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "^24"
|
|
7
7
|
},
|
|
8
|
+
"devEngines": {
|
|
9
|
+
"runtime": {
|
|
10
|
+
"name": "node",
|
|
11
|
+
"version": "^24"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
8
14
|
"description": "Web UI for the pi coding agent",
|
|
9
15
|
"repository": {
|
|
10
16
|
"type": "git",
|
|
@@ -25,6 +31,7 @@
|
|
|
25
31
|
"dev:omp": "concurrently \"vite build --watch\" \"tsc -w -p tsconfig.server.json\" \"node --watch build/server/server.js --agent omp\"",
|
|
26
32
|
"build": "vite build && tsc -p tsconfig.server.json",
|
|
27
33
|
"build:bin": "node scripts/generate-bin.mjs",
|
|
34
|
+
"test:smoke": "node scripts/smoke-checks.mjs",
|
|
28
35
|
"preview": "vite preview",
|
|
29
36
|
"start": "node build/server/server.js",
|
|
30
37
|
"prepack": "npm run build && npm run build:bin"
|