forked from mohitgauniyal/instbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "instbyte",
"version": "1.12.0",
"description": "A self-hosted LAN sharing utility for fast, frictionless file, link, and snippet exchange across devices — no cloud required.",
"main": "bin/instbyte.js",
"bin": {
"instbyte": "bin/instbyte.js"
},
"files": [
"bin/",
"server/",
"client/"
],
"scripts": {
"start": "node bin/instbyte.js",
"dev": "nodemon bin/instbyte.js",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"lan",
"file-sharing",
"local-network",
"realtime",
"self-hosted",
"developer-tools",
"team-collaboration",
"socket-io",
"sqlite"
],
"author": "Mohit Gauniyal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mohitgauniyal/instbyte.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^8.1.0",
"multer": "^2.0.2",
"sharp": "^0.33.2",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"nodemon": "^3.1.0",
"supertest": "^7.2.2",
"vitest": "^2.1.8"
}
}