-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.79 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
{
"name": "sample-connector-for-bedrock",
"version": "0.0.41",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx ts-node -T src/index.ts",
"dev": "nodemon src/index.ts",
"dev-ui": "vite",
"build": "npm run build-server && npm run build-ui",
"build-server": "rimraf ./dist/server && tsc --project ./tsconfig.json && npm run cp-config",
"cp-config": "cpy package.json dist/ && cpy 'src/scripts/**' dist/server/scripts/",
"build-ui": "vite build",
"preview-ui": "vite preview",
"run": "node dist/server/index.js"
},
"dependencies": {
"@aws-sdk/client-bedrock-agent-runtime": "3.980.0",
"@aws-sdk/client-bedrock-runtime": "3.980.0",
"@aws-sdk/client-s3": "3.980.0",
"@aws-sdk/client-sagemaker-runtime": "3.980.0",
"@aws-sdk/s3-request-presigner": "3.980.0",
"@azure/openai": "^2.0.0",
"@google/generative-ai": "^0.24.1",
"@koa/cors": "^5.0.0",
"@larksuiteoapi/node-sdk": "^1.58.0",
"csv-parser": "^3.2.0",
"dotenv": "17.2.1",
"googleapis": "^144.0.0",
"https-proxy-agent": "^7.0.6",
"koa": "^2.16.3",
"koa-body": "^6.0.1",
"koa-router": "^13.1.1",
"koa-static-server": "^1.5.2",
"mime-types": "^3.0.2",
"nodemailer": "^7.0.13",
"ollama": "^0.5.18",
"openai": "^4.104.0",
"pg": "^8.18.0",
"sharp": "0.34.5",
"winston": "^3.19.0"
},
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@smithy/node-http-handler": "^4.4.9",
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.9",
"@types/koa__cors": "^5.0.1",
"@types/node": "^25.2.0",
"@types/nodemailer": "^7.0.9",
"@types/pg": "^8.16.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vitejs/plugin-vue-jsx": "^5.1.4",
"@vueuse/core": "^14.2.0",
"cpy-cli": "^6.0.0",
"dayjs": "^1.11.19",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.7.0",
"hash-sum": "^2.0.0",
"kui-icons": "^4.2.0",
"kui-vue": "^4.0.0",
"less": "^4.5.1",
"less-loader": "^12.3.0",
"nodemon": "^3.1.11",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^6.3.3",
"vue": "^3.5.27",
"vue-router": "^5.0.2",
"vuex": "^4.1.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"pnpm": {
"onlyBuiltDependencies": [
"core-js",
"protobufjs",
"sharp",
"yorkie"
]
}
}