@agileguy/cf-cli 1.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.
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/dist/index.js +2599 -0
- package/package.json +35 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agileguy/cf-cli",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "A fully-featured Cloudflare CLI wrapping the entire REST API",
|
|
5
|
+
"bin": {
|
|
6
|
+
"cf": "./dist/index.js"
|
|
7
|
+
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "bun build src/index.ts --outfile dist/index.js --target node --minify",
|
|
10
|
+
"start": "bun run src/index.ts",
|
|
11
|
+
"test": "bun test",
|
|
12
|
+
"lint": "bunx tsc --noEmit",
|
|
13
|
+
"typecheck": "bunx tsc --noEmit",
|
|
14
|
+
"prepublishOnly": "bun run build"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=18"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"keywords": [
|
|
24
|
+
"cloudflare",
|
|
25
|
+
"cli",
|
|
26
|
+
"dns",
|
|
27
|
+
"workers",
|
|
28
|
+
"r2",
|
|
29
|
+
"pages"
|
|
30
|
+
],
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"typescript": "^5.4.0",
|
|
33
|
+
"@types/bun": "latest"
|
|
34
|
+
}
|
|
35
|
+
}
|