itsvertical 0.0.3 → 0.0.5
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 +24 -6
- package/cli/dist/index.js +1758 -1820
- package/dist/assets/index-BeDPplJM.css +1 -0
- package/dist/assets/index-DHzvKWjh.js +448 -0
- package/dist/index.html +2 -2
- package/package.json +34 -13
- package/dist/assets/index-C1Wp2kHC.js +0 -177
- package/dist/assets/index-Dq3Strtu.css +0 -1
package/dist/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
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>Vertical</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-DHzvKWjh.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BeDPplJM.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body class="min-h-[100dvh] w-screen overflow-x-hidden antialiased">
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "itsvertical",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Tickets pile up, scopes get done. Project work isn't linear, it's Vertical.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,20 +13,18 @@
|
|
|
13
13
|
"bin": {
|
|
14
14
|
"itsvertical": "./cli/dist/index.js"
|
|
15
15
|
},
|
|
16
|
-
"files": [
|
|
17
|
-
"cli/dist",
|
|
18
|
-
"dist",
|
|
19
|
-
"LICENSE.md",
|
|
20
|
-
"README.md"
|
|
21
|
-
],
|
|
16
|
+
"files": ["cli/dist", "dist", "LICENSE.md", "README.md"],
|
|
22
17
|
"engines": {
|
|
23
18
|
"node": ">=20"
|
|
24
19
|
},
|
|
25
20
|
"scripts": {
|
|
21
|
+
"dev": "cp -n sample.vertical dev.vertical; tsup && concurrently -k -n vite,cli 'vite --open' 'pnpm run dev:cli'",
|
|
22
|
+
"dev:cli": "tsup --watch --onSuccess 'node cli/dist/index.js dev dev.vertical'",
|
|
26
23
|
"build": "vite build && tsup",
|
|
27
24
|
"build:cli": "tsup",
|
|
28
25
|
"itsvertical": "node cli/dist/index.js",
|
|
29
|
-
"
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
30
28
|
"lint": "biome check --error-on-warnings",
|
|
31
29
|
"lint-fix": "biome check --write --error-on-warnings",
|
|
32
30
|
"tsc": "tsc"
|
|
@@ -41,23 +39,46 @@
|
|
|
41
39
|
"@dnd-kit/collision": "0.1.21",
|
|
42
40
|
"@dnd-kit/helpers": "0.1.21",
|
|
43
41
|
"@dnd-kit/react": "0.1.21",
|
|
44
|
-
"@
|
|
42
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
43
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
44
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
45
45
|
"@radix-ui/react-select": "^2.0.0",
|
|
46
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
46
47
|
"@tailwindcss/vite": "4.1.14",
|
|
47
|
-
"@
|
|
48
|
+
"@tippyjs/react": "^4.2.6",
|
|
49
|
+
"@tiptap/core": "^2.27.2",
|
|
50
|
+
"@tiptap/extension-bullet-list": "^2.27.2",
|
|
51
|
+
"@tiptap/extension-character-count": "^2.27.2",
|
|
52
|
+
"@tiptap/extension-color": "^2.27.2",
|
|
53
|
+
"@tiptap/extension-focus": "^2.27.2",
|
|
54
|
+
"@tiptap/extension-highlight": "^2.27.2",
|
|
55
|
+
"@tiptap/extension-link": "^2.27.2",
|
|
56
|
+
"@tiptap/extension-ordered-list": "^2.27.2",
|
|
57
|
+
"@tiptap/extension-placeholder": "^2.27.2",
|
|
58
|
+
"@tiptap/extension-subscript": "^2.27.2",
|
|
59
|
+
"@tiptap/extension-superscript": "^2.27.2",
|
|
60
|
+
"@tiptap/extension-text-align": "^2.27.2",
|
|
61
|
+
"@tiptap/extension-text-style": "^2.27.2",
|
|
62
|
+
"@tiptap/extension-typography": "^2.27.2",
|
|
63
|
+
"@tiptap/extension-underline": "^2.27.2",
|
|
64
|
+
"@tiptap/pm": "^2.27.2",
|
|
65
|
+
"@tiptap/react": "^2.27.2",
|
|
66
|
+
"@tiptap/starter-kit": "^2.27.2",
|
|
67
|
+
"@tiptap/suggestion": "^2.27.2",
|
|
48
68
|
"@types/node": "^22.13.10",
|
|
49
69
|
"@types/react": "19.2.2",
|
|
50
70
|
"@types/react-dom": "19.2.2",
|
|
71
|
+
"concurrently": "^9.2.1",
|
|
51
72
|
"daisyui": "5.3.7",
|
|
52
|
-
"lodash-es": "^4.17.21",
|
|
53
73
|
"lucide-react": "^0.483.0",
|
|
54
74
|
"react": "19.2.0",
|
|
55
75
|
"react-dom": "19.2.0",
|
|
56
|
-
"tailwind-merge": "3.3.1",
|
|
57
76
|
"tailwindcss": "4.1.14",
|
|
77
|
+
"tippy.js": "^6.3.7",
|
|
58
78
|
"tsup": "^6.5.0",
|
|
59
79
|
"typescript": "5.7.3",
|
|
60
80
|
"vite": "^5.4.10",
|
|
61
|
-
"vite-tsconfig-paths": "^5.0.1"
|
|
81
|
+
"vite-tsconfig-paths": "^5.0.1",
|
|
82
|
+
"vitest": "^3.2.4"
|
|
62
83
|
}
|
|
63
84
|
}
|