knowns 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/CLAUDE.md +269 -0
- package/LICENSE +21 -0
- package/README.md +535 -0
- package/dist/index.js +22947 -0
- package/dist/mcp/server.js +27175 -0
- package/dist/ui/main.css +21 -0
- package/dist/ui/main.js +45529 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "knowns",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI tool for dev teams to manage tasks and documentation",
|
|
5
|
+
"module": "index.ts",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"knowns": "./dist/index.js",
|
|
9
|
+
"kn": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"files": ["dist", "CLAUDE.md", "README.md", "LICENSE"],
|
|
13
|
+
"keywords": ["cli", "task-management", "documentation", "knowledge-base", "team-tools", "developer-tools"],
|
|
14
|
+
"author": "howznguyen <howznguyen@knowns.dev>",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/yourusername/knowns.git"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/yourusername/knowns#readme",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/yourusername/knowns/issues"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "bun run --watch src/index.ts",
|
|
26
|
+
"build": "bun build src/index.ts --outdir dist --target bun && bun build src/mcp/server.ts --outdir dist/mcp --target bun",
|
|
27
|
+
"start": "bun run src/index.ts",
|
|
28
|
+
"mcp": "bun run src/mcp/server.ts",
|
|
29
|
+
"test": "bun test",
|
|
30
|
+
"lint": "biome check .",
|
|
31
|
+
"lint:fix": "biome check --write .",
|
|
32
|
+
"format": "biome format --write .",
|
|
33
|
+
"prepare": "husky"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
37
|
+
"@tiptap/extension-link": "^3.14.0",
|
|
38
|
+
"@tiptap/extension-placeholder": "^3.14.0",
|
|
39
|
+
"@tiptap/extension-table": "^3.14.0",
|
|
40
|
+
"@tiptap/extension-table-cell": "^3.14.0",
|
|
41
|
+
"@tiptap/extension-table-header": "^3.14.0",
|
|
42
|
+
"@tiptap/extension-table-row": "^3.14.0",
|
|
43
|
+
"@tiptap/react": "^3.14.0",
|
|
44
|
+
"@tiptap/starter-kit": "^3.14.0",
|
|
45
|
+
"chalk": "^5.3.0",
|
|
46
|
+
"commander": "^12.1.0",
|
|
47
|
+
"gray-matter": "^4.0.3",
|
|
48
|
+
"marked": "^17.0.1",
|
|
49
|
+
"react": "^19.2.3",
|
|
50
|
+
"react-dom": "^19.2.3",
|
|
51
|
+
"turndown": "^7.2.2",
|
|
52
|
+
"zod": "^4.2.1"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@biomejs/biome": "^1.9.4",
|
|
56
|
+
"@types/bun": "latest",
|
|
57
|
+
"@types/react": "^19.2.7",
|
|
58
|
+
"@types/react-dom": "^19.2.3",
|
|
59
|
+
"autoprefixer": "^10.4.23",
|
|
60
|
+
"husky": "^9.1.7",
|
|
61
|
+
"lint-staged": "^15.2.10",
|
|
62
|
+
"postcss": "^8.5.6",
|
|
63
|
+
"tailwindcss": "^4.1.18",
|
|
64
|
+
"typescript": "^5.7.2"
|
|
65
|
+
}
|
|
66
|
+
}
|