@promptowl/contextnest-community 0.1.0-alpha.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.
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>ContextNest</title>
7
+ <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🪺</text></svg>" />
8
+ <script type="module" crossorigin src="/assets/index-xLLf4lHJ.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-CemroDXg.css">
10
+ </head>
11
+ <body class="bg-background text-foreground antialiased">
12
+ <div id="root"></div>
13
+ </body>
14
+ </html>
package/package.json ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "@promptowl/contextnest-community",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "ContextNest Community Edition — self-hosted context governance server for AI workflows. Commercial software by Promptowl LLC.",
5
+ "private": false,
6
+ "type": "module",
7
+ "license": "SEE LICENSE IN LICENSE.md",
8
+ "author": {
9
+ "name": "Promptowl LLC",
10
+ "email": "hoot@promptowl.ai",
11
+ "url": "https://promptowl.ai"
12
+ },
13
+ "homepage": "https://promptowl.ai/contextnest/",
14
+ "bugs": {
15
+ "email": "hoot@promptowl.ai",
16
+ "url": "https://promptowl.ai/contact-us/"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/PromptOwl/contextnest-community.git"
21
+ },
22
+ "keywords": [
23
+ "contextnest",
24
+ "promptowl",
25
+ "context-governance",
26
+ "llm",
27
+ "mcp",
28
+ "ai-workflows",
29
+ "commercial"
30
+ ],
31
+ "main": "dist/index.js",
32
+ "bin": {
33
+ "contextnest-community": "dist/index.js"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "LICENSE.md",
38
+ "README.md",
39
+ "CONFIGURATION.md"
40
+ ],
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "engines": {
45
+ "node": ">=20.0.0"
46
+ },
47
+ "scripts": {
48
+ "dev": "tsx watch src/index.ts",
49
+ "build": "tsup src/index.ts --format esm --dts --clean && pnpm build:ui",
50
+ "build:server": "tsup src/index.ts --format esm --dts --clean",
51
+ "build:ui": "vite build --config ui/vite.config.ts",
52
+ "start": "node dist/index.js",
53
+ "typecheck": "tsc --noEmit",
54
+ "test": "vitest run",
55
+ "test:watch": "vitest"
56
+ },
57
+ "dependencies": {
58
+ "@hono/node-server": "^1.13.8",
59
+ "@modelcontextprotocol/sdk": "^1.12.1",
60
+ "@promptowl/contextnest-engine": "^0.3.7",
61
+ "bcryptjs": "^3.0.3",
62
+ "better-sqlite3": "^11.8.2",
63
+ "hono": "^4.7.6",
64
+ "uuid": "^11.1.0",
65
+ "zod": "^4.3.6"
66
+ },
67
+ "devDependencies": {
68
+ "@radix-ui/react-alert-dialog": "^1.1.11",
69
+ "@radix-ui/react-avatar": "^1.1.0",
70
+ "@radix-ui/react-checkbox": "^1.1.1",
71
+ "@radix-ui/react-dialog": "^1.1.15",
72
+ "@radix-ui/react-dropdown-menu": "^2.1.12",
73
+ "@radix-ui/react-icons": "^1.3.0",
74
+ "@radix-ui/react-label": "^2.1.0",
75
+ "@radix-ui/react-popover": "^1.1.11",
76
+ "@radix-ui/react-progress": "^1.1.0",
77
+ "@radix-ui/react-scroll-area": "^1.2.3",
78
+ "@radix-ui/react-select": "^2.1.1",
79
+ "@radix-ui/react-separator": "^1.1.0",
80
+ "@radix-ui/react-slot": "^1.2.3",
81
+ "@radix-ui/react-switch": "^1.1.2",
82
+ "@radix-ui/react-tabs": "^1.1.9",
83
+ "@radix-ui/react-tooltip": "^1.1.8",
84
+ "@types/bcryptjs": "^3.0.0",
85
+ "@types/better-sqlite3": "^7.6.13",
86
+ "@types/react": "^18.3.0",
87
+ "@types/react-dom": "^18.3.0",
88
+ "@types/uuid": "^10.0.0",
89
+ "@vitejs/plugin-react": "^4.3.0",
90
+ "@vitest/coverage-v8": "^3.2.4",
91
+ "autoprefixer": "^10.4.20",
92
+ "class-variance-authority": "^0.7.0",
93
+ "clsx": "^2.1.1",
94
+ "cmdk": "^1.0.0",
95
+ "lucide-react": "^0.577.0",
96
+ "postcss": "^8.4.47",
97
+ "react": "^18.3.1",
98
+ "react-dom": "^18.3.1",
99
+ "tailwind-merge": "^3.5.0",
100
+ "tailwindcss": "^3.4.14",
101
+ "tailwindcss-animate": "^1.0.7",
102
+ "tsup": "^8.4.0",
103
+ "tsx": "^4.19.4",
104
+ "typescript": "^5.7.3",
105
+ "vite": "^6.0.0",
106
+ "vitest": "^3.0.0"
107
+ }
108
+ }