whipped 0.1.0 → 0.1.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.
- package/dist/cli.js +26 -20
- package/dist/web-ui/assets/{index-rpsRpaUU.js → index-BOR6PC8f.js} +1663 -1598
- package/dist/web-ui/index.html +1 -1
- package/package.json +14 -25
package/dist/web-ui/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
7
7
|
<title>whipped</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BOR6PC8f.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-Dgu7Q26n.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "whipped",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Autonomous AI agent kanban board for Claude, Codex, Opencode, and Cursor.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -14,20 +14,6 @@
|
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=22"
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"clean": "rm -rf dist",
|
|
19
|
-
"build": "pnpm clean && pnpm web:build && node scripts/build.mjs",
|
|
20
|
-
"prepublishOnly": "pnpm build",
|
|
21
|
-
"postinstall": "node scripts/postinstall.mjs",
|
|
22
|
-
"dev": "NODE_ENV=development tsx src/cli.ts",
|
|
23
|
-
"dev:full": "node scripts/dev-full.mjs",
|
|
24
|
-
"web:dev": "pnpm --filter @whipped/web dev",
|
|
25
|
-
"web:build": "pnpm --filter @whipped/web build",
|
|
26
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
27
|
-
"web:typecheck": "pnpm --filter @whipped/web typecheck",
|
|
28
|
-
"lint": "biome lint src web-ui/src",
|
|
29
|
-
"format": "biome format --write ."
|
|
30
|
-
},
|
|
31
17
|
"dependencies": {
|
|
32
18
|
"@hono/zod-validator": "^0.8.0",
|
|
33
19
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
@@ -60,14 +46,17 @@
|
|
|
60
46
|
"tsx": "^4.20.3",
|
|
61
47
|
"typescript": "^5.9.3"
|
|
62
48
|
},
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
|
|
49
|
+
"scripts": {
|
|
50
|
+
"clean": "rm -rf dist",
|
|
51
|
+
"build": "pnpm clean && pnpm web:build && node scripts/build.mjs",
|
|
52
|
+
"postinstall": "node scripts/postinstall.mjs",
|
|
53
|
+
"dev": "NODE_ENV=development tsx src/cli.ts",
|
|
54
|
+
"dev:full": "node scripts/dev-full.mjs",
|
|
55
|
+
"web:dev": "pnpm --filter @whipped/web dev",
|
|
56
|
+
"web:build": "pnpm --filter @whipped/web build",
|
|
57
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
58
|
+
"web:typecheck": "pnpm --filter @whipped/web typecheck",
|
|
59
|
+
"lint": "biome lint src web-ui/src",
|
|
60
|
+
"format": "biome format --write ."
|
|
72
61
|
}
|
|
73
|
-
}
|
|
62
|
+
}
|