UNPKG

@intuitionrobotics/file-upload

Version:

File Uploader - Express & Typescript based backend framework

94 lines 2.28 kB
{ "name": "@intuitionrobotics/file-upload", "version": "2.0.8", "engines": { "node": ">=20.10.0" }, "description": "File Uploader - Express & Typescript based backend framework", "keywords": [ "IR", "infra", "nu-art", "storm", "thunderstorm", "typescript" ], "homepage": "https://github.com/intuition-robotics/file-upload", "bugs": { "url": "https://github.com/intuition-robotics/file-upload/issues" }, "repository": { "type": "git", "url": "git+ssh://git@github.com:intuition-robotics/file-upload.git" }, "license": "Apache-2.0", "author": "IR", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "dependencies": { "@intuitionrobotics/ts-common": "2.0.8", "@intuitionrobotics/thunderstorm": "2.0.8", "@intuitionrobotics/firebase": "2.0.8", "@intuitionrobotics/db-api-generator": "2.0.8", "@intuitionrobotics/push-pub-sub": "2.0.8" }, "devDependencies": { "@types/node": "^20.0.0", "typescript": "^5.3.0", "@intuitionrobotics/testelot": "2.0.8" }, "typesVersions": { "*": { "backend": [ "dist/backend" ], "frontend": [ "dist/frontend" ], "app-backend/*": [ "dist/app-backend/*" ], "app-frontend/*": [ "dist/app-frontend/*" ], "shared/*": [ "dist/shared/*" ] } }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./frontend": { "types": "./dist/frontend.d.ts", "default": "./dist/frontend.js" }, "./backend": { "types": "./dist/backend.d.ts", "default": "./dist/backend.js" }, "./app-frontend/*": { "types": "./dist/app-frontend/*.d.ts", "default": "./dist/app-frontend/*.js" }, "./app-backend/*": { "types": "./dist/app-backend/*.d.ts", "default": "./dist/app-backend/*.js" }, "./shared/*": { "types": "./dist/shared/*.d.ts", "default": "./dist/shared/*.js" } }, "sideEffects": false, "scripts": { "build": "tsc -b src/main/tsconfig.json", "lint": "eslint src/main --cache --cache-location ../node_modules/.cache/eslint/file-upload" } }