rcu-fastify
Version:
Fastify handler for Resumable Chunk Upload
45 lines • 1.12 kB
JSON
{
"name": "rcu-fastify",
"version": "1.0.1",
"description": "Fastify 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": {
"@fastify/multipart": "^8.3.0",
"fastify": "^4.28.0",
"zod": "^3.23.8",
"rcu-back-core": "1.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@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"
}
}