openship 0.2.1 → 0.2.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.
@@ -351,6 +351,55 @@
351
351
  "when": 1784563956184,
352
352
  "tag": "0049_nappy_piledriver",
353
353
  "breakpoints": true
354
+ },
355
+ {
356
+ "idx": 50,
357
+ "version": "7",
358
+ "when": 1784622078459,
359
+ "tag": "0050_add_service_deployment_image_digest",
360
+ "breakpoints": true
361
+ },
362
+ {
363
+ "idx": 51,
364
+ "version": "7",
365
+ "when": 1784623222587,
366
+ "tag": "0051_add_update_status",
367
+ "breakpoints": true
368
+ },
369
+ {
370
+ "idx": 52,
371
+ "version": "7",
372
+ "when": 1784623925198,
373
+ "tag": "0052_add_notice_target",
374
+ "breakpoints": true
375
+ },
376
+ {
377
+ "idx": 53,
378
+ "version": "7",
379
+ "when": 1784648493089,
380
+ "tag": "0053_colossal_sandman",
381
+ "breakpoints": true
382
+ },
383
+ {
384
+ "idx": 54,
385
+ "version": "7",
386
+ "when": 1784665472113,
387
+ "tag": "0054_add_instance_smtp",
388
+ "breakpoints": true
389
+ },
390
+ {
391
+ "idx": 55,
392
+ "version": "7",
393
+ "when": 1784687866083,
394
+ "tag": "0055_rainy_klaw",
395
+ "breakpoints": true
396
+ },
397
+ {
398
+ "idx": 56,
399
+ "version": "7",
400
+ "when": 1784734564556,
401
+ "tag": "0056_moaning_daredevil",
402
+ "breakpoints": true
354
403
  }
355
404
  ]
356
405
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openship",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Openship CLI - deploy, manage, and open your Openship platform from the terminal",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -21,21 +21,25 @@
21
21
  "openship": "./dist/index.js"
22
22
  },
23
23
  "files": [
24
- "dist"
24
+ "dist",
25
+ "README.md"
25
26
  ],
26
27
  "scripts": {
27
28
  "build": "tsup && bun run build/stage-server.ts",
28
29
  "cli": "bun dist/index.js",
29
- "dev": "bun run build && bun dist/index.js",
30
+ "dev": "bun run build && bun run build/stage-dashboard.ts && OPENSHIP_DASHBOARD_DIR=\"$(cd ../dashboard/.next/standalone && pwd)\" bun dist/index.js",
30
31
  "lint": "tsc --noEmit",
31
- "clean": "rm -rf dist .turbo node_modules"
32
+ "clean": "rm -rf dist .turbo node_modules README.md",
33
+ "prepack": "cp ../../README.md README.md"
32
34
  },
33
35
  "dependencies": {
34
36
  "@clack/prompts": "^0.11.0",
35
37
  "chalk": "^5.6.2",
36
38
  "commander": "^14.0.3",
39
+ "dockerode": "^4.0.9",
37
40
  "open": "^10.2.0",
38
- "ora": "^9.3.0"
41
+ "ora": "^9.3.0",
42
+ "ssh2": "^1.17.0"
39
43
  },
40
44
  "devDependencies": {
41
45
  "@types/node": "^22.13.0",