@bagdock/cli 0.1.1

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 +90 -0
  2. package/dist/bagdock.js +3950 -0
  3. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@bagdock/cli",
3
+ "version": "0.1.1",
4
+ "description": "Bagdock developer CLI — build, test, and deploy apps and edges on the Bagdock platform",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/bagdock/bagdock.git",
8
+ "directory": "packages/cli"
9
+ },
10
+ "type": "module",
11
+ "bin": {
12
+ "bagdock": "./dist/bagdock.js"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "scripts": {
22
+ "dev": "bun run bin/bagdock.ts",
23
+ "build": "bun build bin/bagdock.ts --outdir dist --target node && node -e \"const fs=require('fs');const f='dist/bagdock.js';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f,'utf8'))\"",
24
+ "prepublishOnly": "bun run build",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "dependencies": {
28
+ "commander": "^13.1.0",
29
+ "open": "^10.1.0",
30
+ "chalk": "^5.4.1"
31
+ },
32
+ "devDependencies": {
33
+ "@types/bun": "latest",
34
+ "typescript": "^5.3.3"
35
+ }
36
+ }