@gradual-so/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 (2) hide show
  1. package/dist/index.js +22400 -0
  2. package/package.json +46 -0
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@gradual-so/cli",
3
+ "version": "0.1.0",
4
+ "description": "Gradual CLI for feature flag management",
5
+ "type": "module",
6
+ "bin": {
7
+ "gradual": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "license": "MIT",
16
+ "keywords": [
17
+ "feature-flags",
18
+ "gradual",
19
+ "cli"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/elijahnikov/gradual",
24
+ "directory": "packages/cli"
25
+ },
26
+ "scripts": {
27
+ "build": "bun build src/index.ts --outdir dist --target node --format esm && node -e \"const fs=require('fs');const f='dist/index.js';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f,'utf8'))\"",
28
+ "clean": "git clean -xdf .cache .turbo dist node_modules",
29
+ "dev": "bun build src/index.ts --outdir dist --target node --format esm --watch",
30
+ "typecheck": "tsc --noEmit --emitDeclarationOnly false"
31
+ },
32
+ "dependencies": {
33
+ "chalk": "^5.4.0",
34
+ "commander": "^13.0.0",
35
+ "conf": "^13.0.0",
36
+ "@inquirer/prompts": "^7.0.0",
37
+ "open": "^10.1.0",
38
+ "superjson": "2.2.3"
39
+ },
40
+ "devDependencies": {
41
+ "@gradual/tsconfig": "*",
42
+ "@types/node": "catalog:",
43
+ "tsup": "^8.5.1",
44
+ "typescript": "catalog:"
45
+ }
46
+ }