-
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) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1016 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": "localmediaserver",
"version": "1.0.0",
"private": true,
"description": "Self-hosted, personal-Netflix-style LAN video server. Resumable playback, recently watched, and a hardened security model.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"check": "node --check server.js && node --check public/app.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"engines": {
"node": ">=18"
},
"author": "Nicholas Beighley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nick040791/LocalMediaServer.git"
},
"bugs": {
"url": "https://github.com/Nick040791/LocalMediaServer/issues"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"express": "^4.21.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"supertest": "^6.3.4",
"vitest": "^1.6.0"
}
}