-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.08 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.08 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
{
"name": "@verida/data-connector",
"version": "1.2.0",
"description": "Verida Data Connector",
"main": "dist/server.js",
"scripts": {
"cli": "node dist/cli/exec.js",
"core-cli": "node node_modules/@verida/cli-tools/dist/exec.js",
"dev": "yarn build && yarn symlink-static && nodemon src/server.js",
"symlink-static": "rm -rf dist/web && ln -s ../src/web dist/web",
"build": "rm -rf dist && tsc && rm -rf dist/assets && cp -R assets dist/ && cp -R src/web dist/web",
"prestart": "yarn build",
"start": "node dist/server.js",
"tests": "ts-mocha './tests/**/*.ts'",
"tests-report-json": "ts-mocha './test/**/*.ts' --reporter json > test-results.json",
"test": "ts-mocha",
"lambda-deploy": "rm -rf dist && tsc && yarn claudia create --region us-east-1 --handler lambda.handler --deploy-proxy-api --no-optional-dependencies",
"lambda-update": "rm -rf dist && tsc && yarn claudia update",
"lambda-pack": "rm -rf dist && tsc && yarn claudia pack --no-optional-dependencies"
},
"repository": {
"type": "git",
"url": "git+https://github.com/verida/data-connector-server.git"
},
"author": "Verida",
"license": "ISC",
"bugs": {
"url": "https://github.com/verida/data-connector-server/issues"
},
"engines": {
"node": ">=23"
},
"homepage": "https://github.com/verida/data-connector-server#readme",
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"@aws-sdk/client-bedrock-runtime": "^3.693.0",
"@langchain/aws": "^0.1.2",
"@langchain/community": "^0.3.16",
"@langchain/core": "^0.3.19",
"@nillion/nilql": "^0.0.0-alpha.9",
"@node-oauth/express-oauth-server": "^4.1.1",
"@notionhq/client": "^2.2.15",
"@oauth-everything/passport-discord": "^1.0.2",
"@sapphire/snowflake": "^3.4.2",
"@superfaceai/passport-twitter-oauth2": "^1.2.3",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@verida/account-node": "^4.4.5",
"@verida/client-ts": "^4.4.5",
"@verida/did-client": "^4.4.5",
"@verida/did-document": "^4.4.5",
"@verida/encryption-utils": "^4.0.1",
"@verida/helpers": "^4.4.1",
"@verida/types": "^4.4.1",
"@verida/vda-common": "^4.4.5",
"@verida/vda-did-resolver": "^4.4.5",
"@verida/vda-sbt-client": "^4.4.5",
"@verida/verifiable-credentials": "^4.4.5",
"@verida/web3": "^4.4.5",
"alchemy-sdk": "^3.5.1",
"aws-serverless-express": "^3.4.0",
"axios": "^1.7.2",
"body-parser": "^1.19.0",
"closevector-node": "^0.1.6",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.1",
"did-resolver": "^4.1.0",
"discord.js": "^14.16.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.3",
"fb": "^2.0.0",
"fs": "^0.0.1-security",
"gaxios": "^6.7.0",
"googleapis": "^140.0.1",
"groq-sdk": "^0.5.0",
"hnswlib-node": "^3.0.0",
"langchain": "^0.3.6",
"lodash": "^4.17.21",
"log4js": "^6.4.1",
"mailparser": "^3.7.1",
"mammoth": "^1.8.0",
"memory-cache": "^0.2.0",
"minisearch": "^7.1.0",
"mocha": "^9.2.1",
"moment-timezone": "^0.5.45",
"mongodb": "^6.12.0",
"multer": "^1.4.5-lts.1",
"nano": "^9.0.5",
"node-imap": "^0.9.6",
"officeparser": "^4.1.1",
"passport": "^0.5.2",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pdf-parse": "^1.1.1",
"sanitize-html": "^2.13.1",
"string-strip-html": "8.5.0",
"tdlib-native": "^3.1.0",
"ts-mocha": "^9.0.2",
"ts-textrank": "^1.0.3",
"twitter-api-v2": "^1.14.0",
"uuid": "^11.0.5",
"xlsx": "^0.18.5",
"xoauth2": "^1.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express-session": "1.17.0",
"@types/mocha": "^9.1.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^22.10.7",
"@types/oauth2-server": "^3.0.18",
"@types/passport": "^1.0.17",
"@types/uuid": "^10.0.0",
"@verida/cli-tools": "^4.4.5",
"claudia": "^5.14.1",
"command-line-interface": "^5.0.0",
"nodemon": "^2.0.14",
"open": "^8.4.2",
"typescript": "^5.6.3"
}
}