@kryd/cli 0.1.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 (4) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +54 -0
  3. package/dist/index.js +15918 -0
  4. package/package.json +64 -0
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@kryd/cli",
3
+ "version": "0.1.0",
4
+ "description": "Kryd CLI — push a React / Vite / Next.js app to the effortless EU-sovereign deploy stack on Scaleway: git push → live with SSL, one-click managed Postgres & object storage, and an EU-hosted AI gateway already wired in.",
5
+ "keywords": [
6
+ "kryd",
7
+ "deploy",
8
+ "scaleway",
9
+ "eu-sovereign",
10
+ "paas",
11
+ "cli",
12
+ "react",
13
+ "vite",
14
+ "nextjs",
15
+ "ai-gateway"
16
+ ],
17
+ "homepage": "https://kryd.eu",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/24BEEPS/kryd.git",
21
+ "directory": "apps/cli"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/24BEEPS/kryd/issues"
25
+ },
26
+ "license": "Apache-2.0",
27
+ "author": "Kryd <boris@beep24.nl>",
28
+ "type": "module",
29
+ "bin": {
30
+ "kryd": "dist/index.js"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "LICENSE"
36
+ ],
37
+ "engines": {
38
+ "node": ">=22"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "commander": "^12.1.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^22.10.2",
48
+ "esbuild": "^0.24.2",
49
+ "eslint": "^9.17.0",
50
+ "tsx": "^4.19.2",
51
+ "typescript": "^5.6.3",
52
+ "vitest": "^2.1.8",
53
+ "@kryd/shared-types": "0.0.0",
54
+ "@kryd/config-ts": "0.0.0",
55
+ "@kryd/config-eslint": "0.0.0"
56
+ },
57
+ "scripts": {
58
+ "build": "esbuild src/index.ts --bundle --platform=node --format=esm --external:commander --define:__KRYD_VERSION__=\\\"$npm_package_version\\\" --outfile=dist/index.js",
59
+ "typecheck": "tsc -p tsconfig.json --noEmit",
60
+ "lint": "eslint src",
61
+ "test": "vitest run",
62
+ "dev": "tsx src/index.ts"
63
+ }
64
+ }