@marina-cloud/cli 0.0.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.
Files changed (3) hide show
  1. package/README.md +67 -0
  2. package/dist/marina.mjs +2216 -0
  3. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@marina-cloud/cli",
3
+ "version": "0.0.0",
4
+ "description": "Command-line client for Marina Cloud",
5
+ "homepage": "https://github.com/marina-hq/marina#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/marina-hq/marina/issues"
8
+ },
9
+ "license": "Apache-2.0",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/marina-hq/marina.git",
13
+ "directory": "packages/cli"
14
+ },
15
+ "bin": {
16
+ "marina": "dist/marina.mjs"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "type": "module",
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "provenance": false
25
+ },
26
+ "scripts": {
27
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=esm --loader:.md=text --loader:.yaml=text --loader:.html=text --loader:.css=text --loader:.txt=text --outfile=dist/marina.mjs --banner:js=\"#!/usr/bin/env node\" && chmod +x dist/marina.mjs",
28
+ "typecheck": "tsc --noEmit",
29
+ "test": "pnpm build && node --experimental-strip-types --test src/*.test.ts",
30
+ "prepack": "pnpm build"
31
+ },
32
+ "devDependencies": {
33
+ "@types/node": "^26.2.0",
34
+ "esbuild": "^0.25.0",
35
+ "fflate": "^0.8.2",
36
+ "typescript": "^5.9.0"
37
+ },
38
+ "engines": {
39
+ "node": ">=22"
40
+ }
41
+ }