@jyork0828/pi-pilot 0.0.2 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jyork0828/pi-pilot",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "private": false,
5
5
  "description": "Browser UI for the pi coding agent.",
6
6
  "type": "module",
@@ -13,13 +13,6 @@
13
13
  "public",
14
14
  "README.md"
15
15
  ],
16
- "scripts": {
17
- "build": "tsup",
18
- "dev": "tsx watch --env-file-if-exists=.env src/index.ts",
19
- "prepack": "node ../../scripts/assert-web-assets.mjs",
20
- "start": "tsx --env-file-if-exists=.env src/index.ts",
21
- "typecheck": "tsc --noEmit"
22
- },
23
16
  "dependencies": {
24
17
  "@earendil-works/pi-coding-agent": "0.75.4",
25
18
  "@hono/node-server": "^1.13.7",
@@ -28,12 +21,12 @@
28
21
  "ws": "^8.18.0"
29
22
  },
30
23
  "devDependencies": {
31
- "@pi-pilot/shared": "workspace:*",
32
24
  "@types/node": "^22.10.0",
33
25
  "@types/ws": "^8.5.13",
34
26
  "tsup": "^8.5.1",
35
27
  "tsx": "^4.19.2",
36
- "typescript": "^5.5.0"
28
+ "typescript": "^5.5.0",
29
+ "@pi-pilot/shared": "0.0.1"
37
30
  },
38
31
  "engines": {
39
32
  "node": ">=20"
@@ -41,5 +34,11 @@
41
34
  "publishConfig": {
42
35
  "access": "public",
43
36
  "registry": "https://registry.npmjs.org/"
37
+ },
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "dev": "tsx watch --env-file-if-exists=.env src/index.ts",
41
+ "start": "tsx --env-file-if-exists=.env src/index.ts",
42
+ "typecheck": "tsc --noEmit"
44
43
  }
45
- }
44
+ }