@beastmode-develeap/beastmode 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.
- package/README.md +94 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9802 -0
- package/dist/index.js.map +1 -0
- package/dist/methodologies/bmad.json +40 -0
- package/dist/methodologies/lean-startup.json +32 -0
- package/dist/methodologies/traditional-prd.json +40 -0
- package/dist/web/board.html +5660 -0
- package/dist/web/develeap-icon.png +0 -0
- package/dist/web/develeap-logo.png +0 -0
- package/dist/web/favicon.svg +25 -0
- package/dist/web/index.html +1241 -0
- package/dist/web/logo-dark.svg +30 -0
- package/dist/web/logo-full.svg +48 -0
- package/dist/web/logo-horizontal.svg +46 -0
- package/dist/web/logo-icon.svg +53 -0
- package/dist/web/logo-light.svg +30 -0
- package/package.json +62 -0
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<style>
|
|
3
|
+
@media (prefers-color-scheme: dark) {
|
|
4
|
+
.body { fill: #f0f0f0; }
|
|
5
|
+
.amber { fill: #F5A623; }
|
|
6
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
7
|
+
}
|
|
8
|
+
@media (prefers-color-scheme: light) {
|
|
9
|
+
.body { fill: #1a1a1a; }
|
|
10
|
+
.amber { fill: #F5A623; }
|
|
11
|
+
.amber-s { stroke: #F5A623; fill: none; }
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
<g transform="translate(16,20)">
|
|
15
|
+
<!-- Simplified factory -->
|
|
16
|
+
<rect class="body" x="-10" y="2" width="11" height="10" rx="1"/>
|
|
17
|
+
<rect class="body" x="2" y="-2" width="9" height="14" rx="1"/>
|
|
18
|
+
<rect class="body" x="4" y="-8" width="3" height="7" rx="0.5"/>
|
|
19
|
+
<rect class="body" x="-11" y="12" width="23" height="1" rx="0.5"/>
|
|
20
|
+
<!-- Burst -->
|
|
21
|
+
<line class="amber-s" x1="5.5" y1="-9" x2="5.5" y2="-16" stroke-width="1.5" stroke-linecap="round"/>
|
|
22
|
+
<polygon class="amber" points="5.5,-16 3,-12 8,-12"/>
|
|
23
|
+
<circle class="amber" cx="5.5" cy="-17.5" r="1"/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|