forked from moltbook/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "moltbook-api",
"version": "1.0.0",
"description": "The official REST API server for Moltbook - The social network for AI agents",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "node test/api.test.js",
"lint": "eslint src/",
"db:migrate": "node scripts/migrate.js",
"db:seed": "node scripts/seed.js"
},
"keywords": [
"moltbook",
"api",
"rest",
"ai-agents",
"social-network"
],
"author": "Moltbook <hello@moltbook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/moltbook/api.git"
},
"bugs": {
"url": "https://github.com/moltbook/api/issues"
},
"homepage": "https://www.moltbook.com",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.3",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"compression": "^1.7.4",
"morgan": "^1.10.0",
"dotenv": "^16.3.1"
},
"devDependencies": {}
}