@edgestore/cli 0.0.0-canary-20260801073726

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 +21 -0
  2. package/README.md +34 -0
  3. package/dist/bin.mjs +3004 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@edgestore/cli",
3
+ "version": "0.0.0-canary-20260801073726",
4
+ "description": "Command-line interface for EdgeStore accounts and projects",
5
+ "homepage": "https://edgestore.dev",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/edgestorejs/edgestore.git",
10
+ "directory": "packages/cli"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "author": "Ravi <me@ravi.com>",
16
+ "type": "module",
17
+ "bin": {
18
+ "edgestore": "dist/bin.mjs"
19
+ },
20
+ "engines": {
21
+ "node": ">=24"
22
+ },
23
+ "keywords": [
24
+ "cli",
25
+ "upload",
26
+ "file",
27
+ "cdn",
28
+ "edgestore",
29
+ "edge-store"
30
+ ],
31
+ "scripts": {
32
+ "build": "pnpm typecheck && rollup --config rollup.config.ts --configPlugin rollup-plugin-swc3",
33
+ "dev": "pnpm build --watch",
34
+ "test": "vitest run",
35
+ "typecheck": "tsc --noEmit -p tsconfig.json",
36
+ "lint": "eslint --cache --report-unused-disable-directives src"
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "README.md",
41
+ "LICENSE",
42
+ "package.json"
43
+ ],
44
+ "dependencies": {
45
+ "@clack/prompts": "1.7.0",
46
+ "@edgestore/sdk": "0.7.0",
47
+ "@napi-rs/keyring": "1.3.0",
48
+ "commander": "15.0.0",
49
+ "env-paths": "4.0.0",
50
+ "picocolors": "1.1.1",
51
+ "zod": "4.3.5"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "25.0.3",
55
+ "typescript": "5.9.3"
56
+ }
57
+ }