itsvertical 0.0.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.
- package/LICENSE.md +7 -0
- package/README.md +180 -0
- package/cli/dist/index.js +2291 -0
- package/dist/assets/index-CgahjK2L.css +1 -0
- package/dist/assets/index-DZzk7eGT.js +177 -0
- package/dist/assets/logo-B8C4aIsj.png +0 -0
- package/dist/index.html +13 -0
- package/package.json +57 -0
|
Binary file
|
package/dist/index.html
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en" data-theme="light" class="bg-zinc-300">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Vertical</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-DZzk7eGT.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CgahjK2L.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body class="min-h-[100dvh] w-screen overflow-x-hidden antialiased">
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "itsvertical",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Tickets pile up, scopes get done. Project work isn't linear, it's Vertical.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Seasoned <hello@seasoned.cc> (https://www.seasoned.cc)",
|
|
8
|
+
"homepage": "https://github.com/seasonedcc/vertical",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/seasonedcc/vertical.git"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"itsvertical": "./cli/dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"files": ["cli/dist", "dist", "LICENSE.md", "README.md"],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=20"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "vite build && tsup",
|
|
22
|
+
"build:cli": "tsup",
|
|
23
|
+
"itsvertical": "node cli/dist/index.js",
|
|
24
|
+
"lint": "biome check --error-on-warnings",
|
|
25
|
+
"lint-fix": "biome check --write --error-on-warnings",
|
|
26
|
+
"tsc": "tsc"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"commander": "^13.1.0",
|
|
30
|
+
"get-port": "^7.1.0",
|
|
31
|
+
"open": "^10.1.2"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@biomejs/biome": "1.9.4",
|
|
35
|
+
"@dnd-kit/collision": "0.1.21",
|
|
36
|
+
"@dnd-kit/helpers": "0.1.21",
|
|
37
|
+
"@dnd-kit/react": "0.1.21",
|
|
38
|
+
"@heroicons/react": "^2.1.1",
|
|
39
|
+
"@radix-ui/react-select": "^2.0.0",
|
|
40
|
+
"@tailwindcss/vite": "4.1.14",
|
|
41
|
+
"@types/lodash-es": "4.17.12",
|
|
42
|
+
"@types/node": "^22.13.10",
|
|
43
|
+
"@types/react": "19.2.2",
|
|
44
|
+
"@types/react-dom": "19.2.2",
|
|
45
|
+
"daisyui": "5.3.7",
|
|
46
|
+
"lodash-es": "^4.17.21",
|
|
47
|
+
"lucide-react": "^0.483.0",
|
|
48
|
+
"react": "19.2.0",
|
|
49
|
+
"react-dom": "19.2.0",
|
|
50
|
+
"tailwind-merge": "3.3.1",
|
|
51
|
+
"tailwindcss": "4.1.14",
|
|
52
|
+
"tsup": "^6.5.0",
|
|
53
|
+
"typescript": "5.7.3",
|
|
54
|
+
"vite": "^5.4.10",
|
|
55
|
+
"vite-tsconfig-paths": "^5.0.1"
|
|
56
|
+
}
|
|
57
|
+
}
|