kenzoboard 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +5510 -0
  2. package/package.json +35 -0
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "kenzoboard",
3
+ "version": "0.1.1",
4
+ "description": "Kenzo board for human-led AI work, powered by the Flux engine",
5
+ "type": "module",
6
+ "bin": {
7
+ "kenzoboard": "./dist/index.js",
8
+ "flux": "./dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "bun build src/index.ts --outdir dist --target node",
12
+ "dev": "bun run src/index.ts"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/sirsjg/flux.git",
17
+ "directory": "packages/cli"
18
+ },
19
+ "keywords": ["cli", "kanban", "tasks", "mcp", "ai", "agents"],
20
+ "author": "sirsjg",
21
+ "license": "MIT",
22
+ "homepage": "https://github.com/sirsjg/flux",
23
+ "dependencies": {},
24
+ "devDependencies": {
25
+ "@flux/shared": "workspace:*",
26
+ "@hono/node-server": "^1.13.7",
27
+ "hono": "^4.6.12",
28
+ "@types/node": "^22.10.5",
29
+ "typescript": "~5.6.2"
30
+ },
31
+ "files": ["dist"],
32
+ "publishConfig": {
33
+ "provenance": true
34
+ }
35
+ }