@superflag-sh/cli 0.1.2 → 0.1.3
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/package.json +47 -31
package/package.json
CHANGED
|
@@ -1,33 +1,49 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
2
|
+
"name": "@superflag-sh/cli",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "CLI for Superflag feature flags",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"superflag": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/superflag-sh/cli"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"feature-flags",
|
|
18
|
+
"cli",
|
|
19
|
+
"superflag"
|
|
20
|
+
],
|
|
21
|
+
"author": "Superflag",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/bun": "^1.3.5",
|
|
25
|
+
"@types/node": "^22.0.0",
|
|
26
|
+
"husky": "^9.1.7",
|
|
27
|
+
"lint-staged": "^16.2.7",
|
|
28
|
+
"typescript": "^5.0.0"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "rm -rf dist && bun build ./src/index.ts --outdir dist --target node --format esm && chmod +x dist/index.js",
|
|
32
|
+
"dev": "bun run src/index.ts",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"test": "bun test",
|
|
35
|
+
"test:watch": "bun test --watch",
|
|
36
|
+
"prepare": "husky"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@biomejs/biome": "^2.3.11"
|
|
40
|
+
},
|
|
41
|
+
"lint-staged": {
|
|
42
|
+
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
|
|
43
|
+
"biome check --write --unsafe --staged --no-errors-on-unmatched"
|
|
44
|
+
],
|
|
45
|
+
"**/*.test.ts": [
|
|
46
|
+
"bun test"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
33
49
|
}
|