shareoverlan
Version:
Simple local file sharing over LAN.
58 lines (57 loc) • 1.33 kB
JSON
{
"name": "shareoverlan",
"version": "1.1.2",
"description": "Simple local file sharing over LAN.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"shareoverlan": "dist/cli.js",
"sol": "dist/cli.js"
},
"files": [
"dist/**/*",
"client/**/*",
"assets/**/*"
],
"scripts": {
"dev": "nodemon src/dev.ts",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"express",
"file-share",
"LAN",
"archiver",
"download",
"file-server"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"archiver": "^7.0.1",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"fs-extra": "^11.3.0",
"multer": "^2.0.1",
"qrcode": "^1.5.4",
"socket.io": "^4.8.1",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/express": "^5.0.3",
"@types/fs-extra": "^11.0.4",
"@types/multer": "^1.4.13",
"@types/mv": "^2.1.4",
"@types/node": "^20.4.0",
"@types/qrcode": "^1.5.5",
"@types/socket.io": "^3.0.1",
"@types/update-notifier": "^6.0.8",
"nodemon": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}