-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 953 Bytes
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
{
"name": "ipfs-gate",
"version": "0.1.0-dev",
"description": "Standalone Hive-payment-gated IPFS pinning service. v4call's file-transfer backend; usable by any Hive-aware app.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"migrate": "node -e \"require('./quota').runMigrations()\"",
"test": "node --test test/",
"test:hive": "node test-hive-verify.js"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"multer": "^1.4.5-lts.1",
"@hiveio/dhive": "^1.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CompleteNoobs/IPFS-Gate.git"
},
"author": "CompleteNoobs",
"license": "MIT",
"keywords": [
"ipfs",
"hive",
"v4call",
"pinning",
"decentralised"
]
}