@ludovicm67/lib-filetransfer
Version:
Library to help building a file transfer application
61 lines (60 loc) • 1.52 kB
JSON
{
"name": "@ludovicm67/lib-filetransfer",
"version": "2.0.0",
"description": "Library to help building a file transfer application",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "npm run build && node --no-warnings lib/index.js",
"docs": "typedoc src/index.ts --out docs --plugin typedoc-plugin-mermaid",
"test": "npm run build && node --test test/**/*.test.js",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ludovicm67/lib-filetransfer.git"
},
"author": {
"name": "Ludovic Muller",
"url": "https://ludovic-muller.fr/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ludovicm67/lib-filetransfer/issues"
},
"homepage": "https://github.com/ludovicm67/lib-filetransfer#readme",
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"typedoc": "^0.27.2",
"typedoc-plugin-mermaid": "^1.10.0",
"typescript": "^5.3.2"
},
"dependencies": {
"base64-arraybuffer": "^1.0.2",
"p-limit": "^6.0.0",
"uuid": "^11.0.1"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"file-transfer",
"download",
"upload",
"p2p",
"webrtc",
"data",
"library",
"filetransfer"
]
}