@surph_ai/sdk 0.0.12 → 0.0.13
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/deploy/index.js +50 -140
- package/deploy/tool-main.js +19 -0
- package/index.js +97 -34
- package/package.json +4 -5
- package/scaffold/index.js +11 -11
- package/scaffold/tool/package.json +5 -4
- package/scaffold/tool/tools/index.js +1 -1
- package/toolserver/routes/tool.js +18 -16
- package/utils/index.js +0 -1
- package/base/vinely-base/.nvmrc +0 -1
- package/base/vinely-base/README.md +0 -30
- package/base/vinely-base/app.js +0 -5
- package/base/vinely-base/declarations.d.ts +0 -1
- package/base/vinely-base/package.json +0 -103
- package/base/vinely-base/public/css/globals-2.css +0 -3699
- package/base/vinely-base/public/css/globals.css +0 -3695
- package/base/vinely-base/public/js/app.js +0 -1
- package/base/vinely-base/public/js/jquery.js +0 -2
- package/base/vinely-base/scratch.js +0 -21
- package/base/vinely-base/src/client/components/app-sidebar.tsx +0 -59
- package/base/vinely-base/src/client/components/assistant-ui/markdown-text.tsx +0 -153
- package/base/vinely-base/src/client/components/assistant-ui/thread-list.tsx +0 -67
- package/base/vinely-base/src/client/components/assistant-ui/thread.tsx +0 -666
- package/base/vinely-base/src/client/components/assistant-ui/tool-fallback.tsx +0 -44
- package/base/vinely-base/src/client/components/assistant-ui/tooltip-icon-button.tsx +0 -44
- package/base/vinely-base/src/client/components/ui/breadcrumb.tsx +0 -109
- package/base/vinely-base/src/client/components/ui/button.tsx +0 -59
- package/base/vinely-base/src/client/components/ui/input.tsx +0 -21
- package/base/vinely-base/src/client/components/ui/separator.tsx +0 -28
- package/base/vinely-base/src/client/components/ui/sheet.tsx +0 -139
- package/base/vinely-base/src/client/components/ui/sidebar.tsx +0 -726
- package/base/vinely-base/src/client/components/ui/skeleton.tsx +0 -14
- package/base/vinely-base/src/client/components/ui/tooltip.tsx +0 -61
- package/base/vinely-base/src/client/components/vines-sidebar.tsx +0 -182
- package/base/vinely-base/src/client/contexts/SessionContext.tsx +0 -28
- package/base/vinely-base/src/client/contexts/SessionReducer.tsx +0 -32
- package/base/vinely-base/src/client/hooks/use-mobile.ts +0 -19
- package/base/vinely-base/src/client/index.tsx +0 -154
- package/base/vinely-base/src/client/lib/API.ts +0 -155
- package/base/vinely-base/src/client/lib/RPC.ts +0 -49
- package/base/vinely-base/src/client/lib/utils.ts +0 -96
- package/base/vinely-base/src/server/index.ts +0 -63
- package/base/vinely-base/src/server/routes/api.ts +0 -38
- package/base/vinely-base/src/server/routes/chat.ts +0 -133
- package/base/vinely-base/src/server/routes/main.ts +0 -36
- package/base/vinely-base/src/server/routes/mcp.ts +0 -52
- package/base/vinely-base/src/server/routes/rpc.ts +0 -64
- package/base/vinely-base/src/server/routes/thread.ts +0 -44
- package/base/vinely-base/src/server/utils/APIMgr.ts +0 -156
- package/base/vinely-base/src/server/utils/Auth.ts +0 -235
- package/base/vinely-base/src/server/utils/fetchManifest.ts +0 -15
- package/base/vinely-base/src/server/utils/mcp-auth.ts +0 -251
- package/base/vinely-base/tsconfig.json +0 -16
- package/base/vinely-base/views/landing.html +0 -187
- package/base/vinely-base/views/partials/imports.dev.html +0 -3
- package/base/vinely-base/webpack.config.js +0 -112
- package/deploy/Dockerfile +0 -9
- package/utils/Realm.js +0 -60
- package/utils/http.js +0 -22
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "base-template",
|
|
3
|
-
"version": "0.0.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"type": "module",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"start": "node ./app",
|
|
8
|
-
"dev": "webpack --mode development && npm run server:build && nodemon",
|
|
9
|
-
"clean": "rimraf ./public/dist/prod && rimraf ./build",
|
|
10
|
-
"build": "npm run clean && npm run client:build && tsc",
|
|
11
|
-
"server:build": "tsc",
|
|
12
|
-
"client:dev": "webpack --mode development -w",
|
|
13
|
-
"client:build": "rimraf ./public/dist/prod && cross-env NODE_ENV=production webpack"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@ai-sdk/anthropic": "^2.0.12",
|
|
17
|
-
"@ai-sdk/openai": "^2.0.27",
|
|
18
|
-
"@ai-sdk/react": "^2.0.39",
|
|
19
|
-
"@assistant-ui/react": "^0.11.14",
|
|
20
|
-
"@assistant-ui/react-ai-sdk": "^1.1.0",
|
|
21
|
-
"@assistant-ui/react-markdown": "^0.11.0",
|
|
22
|
-
"@modelcontextprotocol/sdk": "^1.17.3",
|
|
23
|
-
"@radix-ui/react-dialog": "^1.1.14",
|
|
24
|
-
"@radix-ui/react-separator": "^1.1.7",
|
|
25
|
-
"@radix-ui/react-slot": "^1.2.3",
|
|
26
|
-
"@radix-ui/react-tooltip": "^1.2.7",
|
|
27
|
-
"@turbo360/turbo-sdk": "^0.0.19",
|
|
28
|
-
"@types/jest": "^29.5.2",
|
|
29
|
-
"@types/react": "^19.1.1",
|
|
30
|
-
"@types/react-dom": "^19.1.2",
|
|
31
|
-
"ai": "^5.0.39",
|
|
32
|
-
"axios": "^1.3.4",
|
|
33
|
-
"class-variance-authority": "^0.7.1",
|
|
34
|
-
"clsx": "^2.1.1",
|
|
35
|
-
"cookie": "^0.5.0",
|
|
36
|
-
"cross-env": "^7.0.3",
|
|
37
|
-
"express": "^4.18.1",
|
|
38
|
-
"framer-motion": "^12.23.12",
|
|
39
|
-
"katex": "0.16.22",
|
|
40
|
-
"lucide-react": "^0.539.0",
|
|
41
|
-
"mustache": "^4.2.0",
|
|
42
|
-
"passport": "^0.7.0",
|
|
43
|
-
"passport-google-oauth20": "^2.0.0",
|
|
44
|
-
"react": "^19.1.0",
|
|
45
|
-
"react-dom": "^19.1.0",
|
|
46
|
-
"react-markdown": "^10.1.0",
|
|
47
|
-
"react-router-dom": "5.2.0",
|
|
48
|
-
"rehype-katex": "7.0.1",
|
|
49
|
-
"remark-gfm": "^4.0.1",
|
|
50
|
-
"remark-math": "6.0.0",
|
|
51
|
-
"serverless-http": "^3.2.0",
|
|
52
|
-
"tailwind-merge": "^3.3.1",
|
|
53
|
-
"zod": "^4.0.17"
|
|
54
|
-
},
|
|
55
|
-
"presets": [
|
|
56
|
-
"@babel/preset-env",
|
|
57
|
-
"@babel/preset-react"
|
|
58
|
-
],
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@babel/core": "^7.20.12",
|
|
61
|
-
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
62
|
-
"@babel/preset-env": "^7.20.2",
|
|
63
|
-
"@babel/preset-react": "^7.18.6",
|
|
64
|
-
"@eslint/eslintrc": "^3",
|
|
65
|
-
"@tailwindcss/postcss": "^4",
|
|
66
|
-
"@types/express": "^5.0.3",
|
|
67
|
-
"@types/node": "^24.2.1",
|
|
68
|
-
"@types/passport": "^1.0.17",
|
|
69
|
-
"@types/passport-google-oauth20": "^2.0.16",
|
|
70
|
-
"@types/react": "^19",
|
|
71
|
-
"@types/react-dom": "^19",
|
|
72
|
-
"@types/react-router-dom": "5.3.3",
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^5.50.0",
|
|
74
|
-
"@typescript-eslint/parser": "^5.50.0",
|
|
75
|
-
"babel-loader": "^9.1.2",
|
|
76
|
-
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
77
|
-
"copy-webpack-plugin": "^11.0.0",
|
|
78
|
-
"eslint": "^8.26.0",
|
|
79
|
-
"eslint-config-prettier": "^8.6.0",
|
|
80
|
-
"eslint-config-react-app": "^7.0.1",
|
|
81
|
-
"eslint-config-standard": "^17.0.0",
|
|
82
|
-
"eslint-plugin-flowtype": "^8.0.3",
|
|
83
|
-
"eslint-plugin-import": "^2.26.0",
|
|
84
|
-
"eslint-plugin-jest": "^27.2.1",
|
|
85
|
-
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
86
|
-
"eslint-plugin-n": "^15.3.0",
|
|
87
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
88
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
89
|
-
"eslint-plugin-react": "^7.31.10",
|
|
90
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
91
|
-
"file-loader": "^6.2.0",
|
|
92
|
-
"html-webpack-plugin": "^5.5.3",
|
|
93
|
-
"lodash-webpack-plugin": "^0.11.6",
|
|
94
|
-
"nodemon": "^2.0.2",
|
|
95
|
-
"rimraf": "^6.0.1",
|
|
96
|
-
"source-map-loader": "^4.0.1",
|
|
97
|
-
"terser-webpack-plugin": "^5.3.9",
|
|
98
|
-
"ts-loader": "^9.5.2",
|
|
99
|
-
"typescript": "^5.9.2",
|
|
100
|
-
"webpack": "^5.75.0",
|
|
101
|
-
"webpack-cli": "^5.0.1"
|
|
102
|
-
}
|
|
103
|
-
}
|