-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (50 loc) · 1.34 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
{
"name": "oh-my-sage",
"version": "0.0.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:mcp": "tsc -p tsconfig.mcp.json && node -e \"if(process.platform!=='win32')require('fs').chmodSync('dist/mcp/mcp/index.js',0o755)\"",
"start": "next start",
"lint": "next lint",
"test": "npx tsx src/test.ts",
"test:unit": "tsx --test tests/**/*.test.ts"
},
"bin": {
"oh-my-sage-mcp": "./dist/mcp/mcp/index.js"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.51",
"@ai-sdk/openai": "^0.0.58",
"@ant-design/icons": "^5.4.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"ai": "^3.4.0",
"antd": "^5.21.0",
"bn.js": "^5.2.1",
"bufferutil": "^4.1.0",
"dayjs": "^1.11.0",
"elliptic": "^6.6.0",
"lodash-es": "^4.17.0",
"next": "^14.2.0",
"node-fetch": "^3.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"ws": "^8.16.0",
"zod": "^3.23.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/elliptic": "^6.4.0",
"@types/lodash-es": "^4.17.0",
"@types/node": "^20.16.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
}
}