cntx-ui 1.0.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/README.md +50 -0
- package/bin/cntx.js +93 -0
- package/dist/assets/index-D0j5i6xy.css +1 -0
- package/dist/assets/index-D_i3ONZO.js +557 -0
- package/dist/index.html +21 -0
- package/dist/sourcery.svg +10 -0
- package/package.json +79 -0
package/dist/index.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link
|
|
6
|
+
rel="icon"
|
|
7
|
+
type="image/svg+xml"
|
|
8
|
+
href="/cntx.svg"
|
|
9
|
+
/>
|
|
10
|
+
<meta
|
|
11
|
+
name="viewport"
|
|
12
|
+
content="width=device-width, initial-scale=1.0"
|
|
13
|
+
/>
|
|
14
|
+
<title>cntx - from @nothingdao</title>
|
|
15
|
+
<script type="module" crossorigin src="/assets/index-D_i3ONZO.js"></script>
|
|
16
|
+
<link rel="stylesheet" crossorigin href="/assets/index-D0j5i6xy.css">
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<div id="root"></div>
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Generated by Pixelmator Pro 3.4.3 -->
|
|
3
|
+
<svg width="31" height="32" viewBox="0 0 31 32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<path id="Rounded-Rectangle" fill="#000000" fill-rule="evenodd" stroke="none" d="M 0 25 C -0 28.865993 3.134007 32 7 32 L 24 32 C 27.865993 32 31 28.865993 31 25 L 31 7 C 31 3.134007 27.865993 0 24 0 L 7 0 C 3.134007 0 0 3.134007 0 7 Z"/>
|
|
5
|
+
<image id="Layer" x="4" y="2" width="26" height="26" visibility="hidden" xlink:href="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGqADAAQAAAABAAAAGgAAAABMybYKAAABDElEQVRIDe2VsQ3CMBBFMaJCNLRpiBSJmhWgZgD6TEBPxQBAzQoMgcQmtExAZ95JCTLGDnYcUcXSl+37d//Hp1geDBKH1voaIjEMSeoi529GyR9L6xbJIqYAghnYgIkZt9fwOSjteEzrHhQ/wR6hsS0ke+Izph24yb4fnXRA+VTot/xNx5pXSi3rtTmTd2K/hddW/KPe5Pq1swO+X9+Z7AsiMgUrHy9x+AP4utTBF5biOTpncBfBhiGXdd3A+ylMCnCpzPyJMOSMQNaY5CJFHIhJ4eGD3iNX7Tsm4pWJtM054NOMEGg8Se2aZETxz5MYRu3eo9CT1Eat5piTtDKQov4k0a2jZSXIowsjC15Gc8EeS15L2wAAAABJRU5ErkJggg=="/>
|
|
6
|
+
<g id="Group-copy">
|
|
7
|
+
<path id="Path" fill="none" stroke="#ffffff" stroke-width="0.880952" stroke-linecap="round" stroke-linejoin="round" d="M 20.6 23.799999 L 28 16.4 L 20.6 9"/>
|
|
8
|
+
<path id="path1" fill="none" stroke="#ffffff" stroke-width="0.880952" stroke-linecap="round" stroke-linejoin="round" d="M 10.733334 9 L 3.333333 16.4 L 10.733334 23.799999"/>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cntx-ui",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "File bundling and tagging tool for AI development",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ai",
|
|
8
|
+
"bundling",
|
|
9
|
+
"file-management",
|
|
10
|
+
"development-tools",
|
|
11
|
+
"codebase"
|
|
12
|
+
],
|
|
13
|
+
"author": "whaleen",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"bin": {
|
|
16
|
+
"cntx": "./bin/cntx.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"bin",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=16.0.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite",
|
|
28
|
+
"build": "vite build",
|
|
29
|
+
"build-with-types": "tsc -b && vite build",
|
|
30
|
+
"lint": "eslint .",
|
|
31
|
+
"preview": "vite preview",
|
|
32
|
+
"prepare": "npm run build",
|
|
33
|
+
"start": "node bin/cntx.js"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@radix-ui/react-alert-dialog": "^1.1.4",
|
|
37
|
+
"@radix-ui/react-avatar": "^1.1.2",
|
|
38
|
+
"@radix-ui/react-checkbox": "^1.1.3",
|
|
39
|
+
"@radix-ui/react-dialog": "^1.1.4",
|
|
40
|
+
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
41
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
42
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
43
|
+
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
44
|
+
"@radix-ui/react-select": "^2.1.4",
|
|
45
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
46
|
+
"@radix-ui/react-tabs": "^1.1.2",
|
|
47
|
+
"@radix-ui/react-tooltip": "^1.1.6",
|
|
48
|
+
"@tanstack/react-query": "^5.62.8",
|
|
49
|
+
"class-variance-authority": "^0.7.1",
|
|
50
|
+
"clsx": "^2.1.1",
|
|
51
|
+
"console-feed": "^3.6.0",
|
|
52
|
+
"dotenv": "^16.4.7",
|
|
53
|
+
"express": "^4.18.2",
|
|
54
|
+
"lucide-react": "^0.469.0",
|
|
55
|
+
"open": "^8.4.2",
|
|
56
|
+
"react": "^18.3.1",
|
|
57
|
+
"react-dom": "^18.3.1",
|
|
58
|
+
"simple-git": "^3.27.0",
|
|
59
|
+
"tailwind-merge": "^2.5.5",
|
|
60
|
+
"tailwindcss-animate": "^1.0.7",
|
|
61
|
+
"zustand": "^5.0.2"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@eslint/js": "^9.17.0",
|
|
65
|
+
"@types/react": "^18.3.17",
|
|
66
|
+
"@types/react-dom": "^18.3.5",
|
|
67
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
68
|
+
"autoprefixer": "^10.4.20",
|
|
69
|
+
"eslint": "^9.17.0",
|
|
70
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
71
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
72
|
+
"globals": "^15.13.0",
|
|
73
|
+
"postcss": "^8.4.49",
|
|
74
|
+
"tailwindcss": "^3.4.17",
|
|
75
|
+
"typescript": "~5.6.2",
|
|
76
|
+
"typescript-eslint": "^8.18.1",
|
|
77
|
+
"vite": "5.4.2"
|
|
78
|
+
}
|
|
79
|
+
}
|