flowpilot 0.0.2

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.
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Favicon",
3
+ "short_name": "Favicon",
4
+ "icons": [
5
+ {
6
+ "src": "/android-chrome-192x192.png",
7
+ "sizes": "192x192",
8
+ "type": "image/png"
9
+ },
10
+ {
11
+ "src": "/android-chrome-512x512.png",
12
+ "sizes": "512x512",
13
+ "type": "image/png"
14
+ }
15
+ ],
16
+ "theme_color": "#ffffff",
17
+ "background_color": "#ffffff",
18
+ "display": "standalone"
19
+ }
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "flowpilot",
3
+ "version": "0.0.2",
4
+ "type": "module",
5
+ "engines": {
6
+ "node": ">=22.13"
7
+ },
8
+ "packageManager": "pnpm@11.0.9",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/server.d.ts",
12
+ "import": "./dist/server.js"
13
+ }
14
+ },
15
+ "module": "./dist/server.js",
16
+ "types": "./dist/server.d.ts",
17
+ "description": "CLI + Web Dashboard bridging Jira & GitLab for release workflow automation",
18
+ "bin": {
19
+ "flowpilot": "./dist/cli.js"
20
+ },
21
+ "scripts": {
22
+ "build": "rolldown -c rolldown.config.ts",
23
+ "check": "biome check --write",
24
+ "dev": "rolldown -c rolldown.config.ts --watch",
25
+ "format": "biome format --write",
26
+ "test": "vitest",
27
+ "release:major": "vitest run && pnpm build && npm version major && npm publish --registry https://registry.npmjs.org/",
28
+ "release:minor": "vitest run && pnpm build && npm version minor && npm publish --registry https://registry.npmjs.org/",
29
+ "release:patch": "vitest run && pnpm build && npm version patch && npm publish --registry https://registry.npmjs.org/",
30
+ "postinstall": "node dist/cli.js serve",
31
+ "prepublishOnly": "pnpm build"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "favicon",
36
+ "README.md"
37
+ ],
38
+ "keywords": [],
39
+ "author": "Corazon",
40
+ "license": "ISC",
41
+ "dependencies": {
42
+ "@clack/prompts": "^1.4.0",
43
+ "@gitbeaker/rest": "^43.8.0",
44
+ "@hono/node-server": "^2.0.2",
45
+ "@inquirer/search": "^4.1.9",
46
+ "cac": "^7.0.0",
47
+ "clipboardy": "^5.3.1",
48
+ "hono": "^4.12.18",
49
+ "i18next": "^26.1.0",
50
+ "picocolors": "^1.1.1"
51
+ },
52
+ "devDependencies": {
53
+ "@biomejs/biome": "2.4.15",
54
+ "@rslib/core": "^0.21.4",
55
+ "@types/node": "^25.6.2",
56
+ "@types/prompts": "^2.4.9",
57
+ "@typescript/native-preview": "7.0.0-dev.20260421.2",
58
+ "rolldown": "^1.0.1",
59
+ "typescript": "^6.0.3",
60
+ "vitest": "^4.1.6"
61
+ }
62
+ }