rcu-express
Version:
Express handler for Resumable Chunk Upload
47 lines • 1.18 kB
JSON
{
"name": "rcu-express",
"version": "1.0.2",
"description": "Express handler for Resumable Chunk Upload",
"author": "Hery Nirintsoa",
"homepage": "https://herytz.github.io/resumable-chunk-upload",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/heryTz/resumable-chunk-upload.git"
},
"bugs": {
"url": "https://github.com/heryTz/resumable-chunk-upload/issues"
},
"keywords": [
"Resumable",
"chunk",
"upload"
],
"dependencies": {
"express": "^4.18.1",
"multer": "1.4.5-lts.1",
"zod": "^3.23.8",
"rcu-back-core": "1.0.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.2",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"tsup": "^8.1.0",
"typescript": "^4.6.4"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest"
}
}