-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.82 KB
/
Copy pathpackage.json
File metadata and controls
150 lines (150 loc) · 4.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@aicontextlab/cli",
"version": "0.1.0",
"description": "CLI + MCP server for managing shared LLM context stores",
"type": "commonjs",
"main": "index.js",
"bin": {
"oc": "./bin/oc.js"
},
"scripts": {
"prepare": "[ -d .git ] && ./scripts/setup-hooks.sh || true",
"test": "npm run test:core && npm run test:search && npm run test:native",
"test:core": "node --test tests/core/*.test.js",
"test:search": "node --test tests/search/*.test.js",
"test:native": "node --test tests/native/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"test:all": "npm run test && npm run test:integration && npm run test:rust",
"test:rust": "cd crates/opencontext-core && cargo test --release --features search",
"test:ui": "node --test src/ui/tests/*.test.cjs",
"mcp": "node src/mcp/server.js",
"ui:dev": "vite --config src/ui/vite.config.js",
"ui:build": "vite build --config src/ui/vite.config.js",
"ui:preview": "vite preview --config src/ui/vite.config.js",
"prepublishOnly": "npm run ui:build",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:mac": "tauri build --target universal-apple-darwin",
"tauri:build:win": "echo '⚠️ Windows 构建需要在 Windows 上执行,或使用 GitHub Actions' && echo '运行: gh workflow run desktop-build.yml' && exit 1",
"api:dev": "node scripts/api-server.js"
},
"keywords": [
"context",
"mcp",
"cursor",
"cli",
"agent"
],
"author": "AIContextLab",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/0xranx/OpenContext"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"files": [
"bin",
"src/core",
"src/mcp",
"src/ui/server.js",
"dist/ui",
"docs",
"package.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.5",
"@heroui/react": "^2.8.5",
"@lancedb/lancedb": "^0.22.3",
"@modelcontextprotocol/sdk": "^1.24.3",
"@platejs/autoformat": "^52.0.1",
"@platejs/basic-nodes": "^52.0.1",
"@platejs/code-block": "^52.0.11",
"@platejs/dnd": "^52.0.1",
"@platejs/layout": "^52.0.11",
"@platejs/link": "^52.0.1",
"@platejs/list": "^52.0.1",
"@platejs/list-classic": "^52.0.1",
"@platejs/markdown": "^52.0.10",
"@platejs/media": "^52.0.11",
"@platejs/table": "^52.0.1",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tiptap/extension-bubble-menu": "^3.14.0",
"@tiptap/extension-code-block": "^3.18.0",
"@tiptap/extension-floating-menu": "^3.14.0",
"@tiptap/extension-horizontal-rule": "^3.14.0",
"@tiptap/extension-image": "^3.14.0",
"@tiptap/extension-link": "^3.14.0",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/extension-table": "^3.14.0",
"@tiptap/extension-table-cell": "^3.14.0",
"@tiptap/extension-table-header": "^3.14.0",
"@tiptap/extension-table-of-contents": "^3.14.0",
"@tiptap/extension-table-row": "^3.14.0",
"@tiptap/extension-task-item": "^3.14.0",
"@tiptap/extension-task-list": "^3.14.0",
"@tiptap/extension-typography": "^3.14.0",
"@tiptap/pm": "^3.14.0",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@tiptap/suggestion": "^3.14.0",
"@zilliz/milvus2-sdk-node": "^2.6.5",
"apache-arrow": "^18.1.0",
"better-sqlite3": "^12.5.0",
"commander": "^14.0.2",
"cors": "^2.8.5",
"express": "^5.0.1",
"fs-extra": "^11.3.2",
"highlight.js": "^11.11.1",
"i18next": "^25.7.2",
"i18next-browser-languagedetector": "^8.2.0",
"lowlight": "^3.3.0",
"open": "^10.1.0",
"openai": "^6.13.0",
"platejs": "^52.0.10",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-multi-backend": "^9.0.0",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-i18next": "^16.5.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.11.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-toc": "^9.0.0",
"tiptap-markdown": "^0.9.0",
"vectra": "^0.11.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tauri-apps/cli": "^2",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.14",
"vite": "^5.4.8"
},
"optionalDependencies": {
"@aicontextlab/core-native": "^0.2.1"
}
}