flaglint 0.0.1

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/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # FlagLint
2
+
3
+ Feature flag debt scanner and OpenFeature migration assistant.
4
+
5
+ FlagLint helps engineering teams find stale feature flags, detect flag debt, and prepare OpenFeature migrations.
6
+
7
+ ## Usage
8
+
9
+ ```bash
10
+ npx flaglint scan
11
+ ```
12
+
13
+ ## Status
14
+
15
+ Early placeholder release. Full CLI coming soon.
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env node
2
+
3
+ const command = process.argv[2];
4
+
5
+ if (command === "scan") {
6
+ console.log("FlagLint scan coming soon.");
7
+ process.exit(0);
8
+ }
9
+
10
+ console.log(`
11
+ FlagLint
12
+
13
+ Feature flag debt scanner and OpenFeature migration assistant.
14
+
15
+ Usage:
16
+ flaglint scan
17
+
18
+ Website:
19
+ https://flaglint.dev
20
+ `);
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "flaglint",
3
+ "version": "0.0.1",
4
+ "description": "Feature flag debt scanner and OpenFeature migration assistant.",
5
+ "bin": {
6
+ "flaglint": "./bin/flaglint.js"
7
+ },
8
+ "type": "module",
9
+ "license": "MIT",
10
+ "keywords": [
11
+ "feature-flags",
12
+ "launchdarkly",
13
+ "openfeature",
14
+ "flag-debt",
15
+ "developer-tools",
16
+ "cli"
17
+ ],
18
+ "author": "",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/flaglint/flaglint.git"
22
+ },
23
+ "homepage": "https://flaglint.dev",
24
+ "bugs": {
25
+ "url": "https://github.com/flaglint/flaglint/issues"
26
+ }
27
+ }