-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.45 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.45 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
{
"name": "selfdev-api",
"version": "1.0.0",
"description": "The Self-developing AI API Server",
"main": "index.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=development DEBUG=sd:* nodemon --exec node -- ./src/index.js",
"prod": "NODE_ENV=production DEBUG=sd:* node ./src/index.js",
"listen": "stripe listen --skip-verify --forward-to https://selfdev-api.dev.local:6369/v1/subscriptions/webhook",
"workers:scheduler": "NODE_ENV=development DEBUG=sd:* nodemon --exec node -- ./src/workers/scheduler.js",
"workers:autopayment": "NODE_ENV=production DEBUG=sd:* node ./src/workers/autopayment.js",
"swarm": "NODE_ENV=development DEBUG=sd:* nodemon --exec node -- ./src/swarm/index.js",
"swarm:prod": "NODE_ENV=production DEBUG=sd:* node ./src/swarm/index.js",
"bridge": "NODE_ENV=development DEBUG=sd:* nodemon --exec node -- ./src/bridge/index.js",
"bridge:prod": "NODE_ENV=production DEBUG=sd:* node ./src/bridge/index.js",
"mcp:inspector": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector --server-url http://selfdev-bridge.dev.local:6370/mcp/679b3c9a6e26f022ca69515b/mcp-server",
"mcp:inspector:lo": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector --server-url http://localhost:6370/mcp/679b3c9a6e26f022ca69515b/mcp-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"selfdev",
"self-developing",
"api",
"server"
],
"author": "Artem Arakcheev",
"license": "UNLICENSED",
"dependencies": {
"@a2a-js/sdk": "^0.3.5",
"@cybernetex/kbn-es-query": "^1.0.2",
"@hyperledger/firefly-sdk": "^1.3.3",
"@modelcontextprotocol/sdk": "^1.21.1",
"@opensearch-project/opensearch": "^3.5.1",
"@xmpp/client": "^0.13.6",
"arangojs": "^5.8.0",
"axios": "^1.12.2",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^4.1.0",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"eventemitter3": "^5.0.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"form-data": "^4.0.4",
"fs-extra": "^11.3.0",
"generate-password": "^1.7.1",
"helmet": "^7.0.0",
"helmet-csp": "^3.4.0",
"hpp": "^0.2.3",
"http-proxy-middleware": "^3.0.5",
"i18next": "^25.3.2",
"imapflow": "^1.1.1",
"ioredis": "^5.8.1",
"jose": "^4.14.4",
"js-yaml": "^4.1.0",
"json-stringify-pretty-compact": "^4.0.0",
"jsonpath": "^1.1.1",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mailparser": "^3.9.0",
"modesl": "^1.2.1",
"mongoose": "^6.12.0",
"mongoose-bcrypt": "^1.10.1",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.10.0",
"mustache": "^4.2.0",
"nanoid": "^5.1.5",
"node-cron": "^4.2.1",
"node-ssh": "^13.2.1",
"node-vault": "^0.10.2",
"nodemailer": "^6.10.1",
"nodemon": "^3.0.1",
"nunjucks": "^3.2.4",
"oauth2orize": "^1.11.1",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"path": "^0.12.7",
"prom-client": "^15.1.3",
"resourcejs": "^2.6.0",
"response-time": "^2.3.2",
"safe-regex": "^2.1.1",
"slugify": "^1.6.6",
"stripe": "^18.2.1",
"tar": "^7.5.1",
"transliteration": "^2.3.5",
"uuid": "^13.0.0",
"zod": "^3.25.76"
}
}