@qlucent/fishi 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 +1611 -0
  2. package/package.json +64 -0
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@qlucent/fishi",
3
+ "version": "0.1.0",
4
+ "description": "FISHI — Your AI Dev Team That Actually Ships. Autonomous agent framework for Claude Code.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "fishi": "./dist/index.js"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format esm --clean",
14
+ "dev": "tsup src/index.ts --format esm --watch --onSuccess 'node dist/index.js'",
15
+ "clean": "rm -rf dist",
16
+ "test": "vitest run"
17
+ },
18
+ "dependencies": {
19
+ "@qlucent/fishi-core": "*",
20
+ "chalk": "^5.3.0",
21
+ "commander": "^12.0.0",
22
+ "fs-extra": "^11.2.0",
23
+ "inquirer": "^9.2.0",
24
+ "ora": "^8.0.0",
25
+ "yaml": "^2.4.0"
26
+ },
27
+ "devDependencies": {
28
+ "@types/fs-extra": "^11.0.0",
29
+ "@types/node": "^20.0.0",
30
+ "tsup": "^8.0.0",
31
+ "typescript": "^5.4.0",
32
+ "vitest": "^2.0.0"
33
+ },
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ },
37
+ "keywords": [
38
+ "claude",
39
+ "claude-code",
40
+ "ai",
41
+ "agent",
42
+ "autonomous",
43
+ "development",
44
+ "framework",
45
+ "multi-agent",
46
+ "orchestration",
47
+ "tdd",
48
+ "worktree",
49
+ "project-management"
50
+ ],
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/kpkaranam/fishi"
54
+ },
55
+ "homepage": "https://github.com/kpkaranam/fishi#readme",
56
+ "bugs": {
57
+ "url": "https://github.com/kpkaranam/fishi/issues"
58
+ },
59
+ "files": [
60
+ "dist",
61
+ "README.md",
62
+ "LICENSE"
63
+ ]
64
+ }