knowns 0.1.5 → 0.1.7
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/CHANGELOG.md +41 -0
- package/CLAUDE.md +527 -96
- package/README.md +118 -472
- package/dist/index.js +1040 -356
- package/dist/mcp/server.js +7 -2
- package/dist/ui/assets/index-BgbLT-Et.css +1 -0
- package/dist/ui/assets/index-DrVgS8n8.js +152 -0
- package/dist/ui/index.html +2 -1
- package/package.json +16 -22
- package/dist/ui/index.css +0 -3088
- package/dist/ui/main.css +0 -1
- package/dist/ui/main.js +0 -452
package/dist/ui/index.html
CHANGED
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Knowns.dev</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-DrVgS8n8.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BgbLT-Et.css">
|
|
7
9
|
</head>
|
|
8
10
|
<body>
|
|
9
11
|
<div id="root"></div>
|
|
10
|
-
<script type="module" src="./main.tsx"></script>
|
|
11
12
|
</body>
|
|
12
13
|
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knowns",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "CLI tool for dev teams to manage tasks and documentation",
|
|
5
5
|
"module": "index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -17,18 +17,16 @@
|
|
|
17
17
|
"type": "git",
|
|
18
18
|
"url": "https://github.com/knowns-dev/knowns.git"
|
|
19
19
|
},
|
|
20
|
-
"homepage": "https://
|
|
20
|
+
"homepage": "https://knowns.dev",
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/knowns-dev/knowns/issues"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
|
-
"dev": "bun run
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"build": "bun run build:cli && bun run build:ui && bun run build:copy-html",
|
|
25
|
+
"dev": "bun run --watch src/index.ts browser --no-open",
|
|
26
|
+
"watch": "nodemon",
|
|
27
|
+
"build": "bun run build:cli && bun run build:ui",
|
|
29
28
|
"build:cli": "bun build src/index.ts --outdir dist --target bun && bun build src/mcp/server.ts --outdir dist/mcp --target bun",
|
|
30
|
-
"build:ui": "
|
|
31
|
-
"build:copy-html": "cp src/ui/index.html dist/ui/index.html",
|
|
29
|
+
"build:ui": "vite build",
|
|
32
30
|
"start": "bun run src/index.ts",
|
|
33
31
|
"mcp": "bun run src/mcp/server.ts",
|
|
34
32
|
"test": "bun test",
|
|
@@ -39,19 +37,15 @@
|
|
|
39
37
|
},
|
|
40
38
|
"dependencies": {
|
|
41
39
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
40
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
42
41
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
43
42
|
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
43
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
44
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
44
45
|
"@radix-ui/react-separator": "^1.1.8",
|
|
45
46
|
"@radix-ui/react-slot": "^1.2.4",
|
|
46
47
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
47
|
-
"@
|
|
48
|
-
"@tiptap/extension-placeholder": "^3.14.0",
|
|
49
|
-
"@tiptap/extension-table": "^3.14.0",
|
|
50
|
-
"@tiptap/extension-table-cell": "^3.14.0",
|
|
51
|
-
"@tiptap/extension-table-header": "^3.14.0",
|
|
52
|
-
"@tiptap/extension-table-row": "^3.14.0",
|
|
53
|
-
"@tiptap/react": "^3.14.0",
|
|
54
|
-
"@tiptap/starter-kit": "^3.14.0",
|
|
48
|
+
"@uiw/react-md-editor": "^4.0.11",
|
|
55
49
|
"chalk": "^5.3.0",
|
|
56
50
|
"class-variance-authority": "^0.7.1",
|
|
57
51
|
"clsx": "^2.1.1",
|
|
@@ -62,28 +56,28 @@
|
|
|
62
56
|
"marked": "^17.0.1",
|
|
63
57
|
"prompts": "^2.4.2",
|
|
64
58
|
"react": "^19.2.3",
|
|
59
|
+
"react-diff-viewer": "^3.1.1",
|
|
65
60
|
"react-dom": "^19.2.3",
|
|
66
|
-
"react-markdown": "^10.1.0",
|
|
67
|
-
"remark-gfm": "^4.0.1",
|
|
68
61
|
"tailwind-merge": "^3.4.0",
|
|
69
62
|
"turndown": "^7.2.2",
|
|
63
|
+
"unist-util-visit": "^5.0.0",
|
|
70
64
|
"zod": "^4.2.1"
|
|
71
65
|
},
|
|
72
66
|
"devDependencies": {
|
|
73
67
|
"@biomejs/biome": "^1.9.4",
|
|
74
|
-
"@tailwindcss/
|
|
68
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
75
69
|
"@types/bun": "latest",
|
|
76
70
|
"@types/prompts": "^2.4.9",
|
|
77
71
|
"@types/react": "^19.2.7",
|
|
78
72
|
"@types/react-dom": "^19.2.3",
|
|
73
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
79
74
|
"autoprefixer": "^10.4.23",
|
|
80
75
|
"concurrently": "^9.2.1",
|
|
81
76
|
"husky": "^9.1.7",
|
|
82
77
|
"lint-staged": "^15.2.10",
|
|
83
78
|
"nodemon": "^3.1.11",
|
|
84
|
-
"postcss": "^8.5.6",
|
|
85
|
-
"postcss-cli": "^11.0.1",
|
|
86
79
|
"tailwindcss": "^4.1.18",
|
|
87
|
-
"typescript": "^5.7.2"
|
|
80
|
+
"typescript": "^5.7.2",
|
|
81
|
+
"vite": "^7.3.0"
|
|
88
82
|
}
|
|
89
83
|
}
|