flowcat 1.3.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/dist/index.mjs +29818 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flowcat",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"bin": {
|
|
6
|
+
"flowcat": "dist/index.mjs",
|
|
7
|
+
"fc": "dist/index.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": ["dist"],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=18"
|
|
12
|
+
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "bun build ./index.ts --target=node --format=esm --outfile=dist/index.mjs --banner:js='#!/usr/bin/env node'",
|
|
18
|
+
"dev": "bun ./index.ts",
|
|
19
|
+
"lint": "bunx biome lint .",
|
|
20
|
+
"lint:fix": "bunx biome lint --write .",
|
|
21
|
+
"format": "bunx biome format --write .",
|
|
22
|
+
"typecheck": "bunx tsc --noEmit",
|
|
23
|
+
"test:unit": "bunx vitest run __tests__",
|
|
24
|
+
"test:e2e": "E2E=1 bunx vitest run e2e",
|
|
25
|
+
"test:e2e:watch": "E2E=1 bunx vitest e2e",
|
|
26
|
+
"release": "semantic-release",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@clack/prompts": "^0.7.0",
|
|
31
|
+
"commander": "^11.1.0",
|
|
32
|
+
"zod": "^3.22.4"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@flowcat/core": "workspace:*",
|
|
36
|
+
"luxon": "^3.5.0"
|
|
37
|
+
}
|
|
38
|
+
}
|