@solcreek/cli 0.3.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.
- package/LICENSE +190 -0
- package/README.md +184 -0
- package/dist/commands/claim.d.ts +18 -0
- package/dist/commands/claim.js +93 -0
- package/dist/commands/deploy.d.ts +38 -0
- package/dist/commands/deploy.js +820 -0
- package/dist/commands/deployments.d.ts +18 -0
- package/dist/commands/deployments.js +84 -0
- package/dist/commands/domains.d.ts +2 -0
- package/dist/commands/domains.js +159 -0
- package/dist/commands/env.d.ts +2 -0
- package/dist/commands/env.js +104 -0
- package/dist/commands/init.d.ts +18 -0
- package/dist/commands/init.js +69 -0
- package/dist/commands/login.d.ts +23 -0
- package/dist/commands/login.js +120 -0
- package/dist/commands/projects.d.ts +13 -0
- package/dist/commands/projects.js +38 -0
- package/dist/commands/status.d.ts +18 -0
- package/dist/commands/status.js +115 -0
- package/dist/commands/whoami.d.ts +13 -0
- package/dist/commands/whoami.js +43 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +38 -0
- package/dist/utils/auth-server.d.ts +22 -0
- package/dist/utils/auth-server.js +91 -0
- package/dist/utils/bundle.d.ts +6 -0
- package/dist/utils/bundle.js +39 -0
- package/dist/utils/config.d.ts +12 -0
- package/dist/utils/config.js +37 -0
- package/dist/utils/git-clone.d.ts +44 -0
- package/dist/utils/git-clone.js +193 -0
- package/dist/utils/nextjs.d.ts +48 -0
- package/dist/utils/nextjs.js +368 -0
- package/dist/utils/output.d.ts +38 -0
- package/dist/utils/output.js +45 -0
- package/dist/utils/repo-url.d.ts +48 -0
- package/dist/utils/repo-url.js +201 -0
- package/dist/utils/sandbox.d.ts +50 -0
- package/dist/utils/sandbox.js +69 -0
- package/dist/utils/ssr-bundle.d.ts +6 -0
- package/dist/utils/ssr-bundle.js +48 -0
- package/dist/utils/tos.d.ts +28 -0
- package/dist/utils/tos.js +95 -0
- package/dist/utils/worker-bundle.d.ts +24 -0
- package/dist/utils/worker-bundle.js +136 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@solcreek/cli",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "CLI for the Creek deployment platform",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"!dist/**/*.test.*",
|
|
10
|
+
"!dist/**/*.map",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"keywords": [
|
|
14
|
+
"creek",
|
|
15
|
+
"cli",
|
|
16
|
+
"deployment",
|
|
17
|
+
"cloudflare",
|
|
18
|
+
"workers"
|
|
19
|
+
],
|
|
20
|
+
"author": "SolCreek",
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
|
+
"homepage": "https://creek.dev",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/solcreek/creek.git",
|
|
26
|
+
"directory": "packages/cli"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"citty": "^0.1.6",
|
|
30
|
+
"consola": "^3.4.2",
|
|
31
|
+
"esbuild": "^0.25.0",
|
|
32
|
+
"smol-toml": "^1.3.1",
|
|
33
|
+
"@solcreek/sdk": "0.1.0-alpha.2"
|
|
34
|
+
},
|
|
35
|
+
"optionalDependencies": {
|
|
36
|
+
"@solcreek/adapter-creek": "*"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@testing-library/dom": "^10.4.1",
|
|
40
|
+
"@testing-library/react": "^16.3.2",
|
|
41
|
+
"@types/node": "^22.19.15",
|
|
42
|
+
"@types/react-dom": "^19",
|
|
43
|
+
"hono": "^4.7.4",
|
|
44
|
+
"jsdom": "^29.0.1",
|
|
45
|
+
"react": "^19.2.4",
|
|
46
|
+
"react-dom": "^19.2.4",
|
|
47
|
+
"typescript": "^5.8.2"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsc",
|
|
51
|
+
"dev": "tsc --watch",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"clean": "rm -rf dist"
|
|
54
|
+
}
|
|
55
|
+
}
|