onflyt-cli 1.0.1-beta.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 +338 -0
  2. package/dist/index.js +13426 -0
  3. package/package.json +64 -0
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "onflyt-cli",
3
+ "version": "1.0.1-beta.0",
4
+ "type": "module",
5
+ "description": "Onflyt CLI - Deploy Node.js and Python APIs to serverless pods. Pay only per use.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/miiglu/onflyt-cli"
9
+ },
10
+ "main": "dist/index.js",
11
+ "bin": {
12
+ "onflyt": "dist/index.js"
13
+ },
14
+ "scripts": {
15
+ "dev": "tsx src/index.tsx",
16
+ "build": "pnpm -r --filter=@miiglu/shared build && esbuild src/index.tsx --bundle --platform=node --outfile=dist/index.js --format=esm --external:react-devtools-core --external:ink --external:react --external:react-dom --external:figlet",
17
+ "start": "node dist/index.js",
18
+ "pack": "npm pack --pack-destination dist",
19
+ "publish": "npm publish --access public --tag beta"
20
+ },
21
+ "keywords": [
22
+ "cli",
23
+ "deployment",
24
+ "serverless",
25
+ "nodejs",
26
+ "python",
27
+ "api",
28
+ "serverless-pods",
29
+ "typescript",
30
+ "react",
31
+ "ink",
32
+ "cloudflare",
33
+ "cloud",
34
+ "devops",
35
+ "onflyt"
36
+ ],
37
+ "author": "Miiglu",
38
+ "license": "MIT",
39
+ "dependencies": {
40
+ "@miiglu/shared": "workspace:*",
41
+ "@octokit/oauth-methods": "^6.0.2",
42
+ "archiver": "^7.0.1",
43
+ "figlet": "^1.11.0",
44
+ "ink": "^6.8.0",
45
+ "ink-select-input": "^6.2.0",
46
+ "ink-spinner": "^5.0.0",
47
+ "ink-text-input": "^6.0.0",
48
+ "meow": "^14.1.0",
49
+ "open": "^11.0.0",
50
+ "react": "^19.0.0"
51
+ },
52
+ "devDependencies": {
53
+ "@types/archiver": "^7.0.0",
54
+ "@types/node": "^25.5.2",
55
+ "@types/react": "^19.2.7",
56
+ "esbuild": "^0.25.0",
57
+ "tsx": "^4.21.0",
58
+ "typescript": "^6.0.2"
59
+ },
60
+ "engines": {
61
+ "node": ">=18.0.0"
62
+ },
63
+ "packageManager": "pnpm@10.33.0"
64
+ }